feature/new-oci-deployment #2

Merged
marcio.fernandes merged 30 commits from feature/new-oci-deployment into main 2026-05-03 01:17:48 +00:00
2 changed files with 13 additions and 1 deletions
Showing only changes of commit b0affd096e - Show all commits
@@ -47,6 +47,19 @@ runs:
echo "AUTH_INLINE generated successfully"
# Build JSON safely
read -r -d '' AUTH_JSON <<'EOF'
{
"auths": {
"__REGISTRY__": {
"auth": "__AUTH__"
}
}
}
EOF
AUTH_JSON="${AUTH_JSON/__REGISTRY__/${{ inputs.registry_addr }}}"
AUTH_JSON="${AUTH_JSON/__AUTH__/$AUTH_INLINE}"
# Build build-arg flags
BUILD_ARG_FLAGS=""
@@ -16,7 +16,6 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2
- name: Fetch limbo public actions
env:
RUNNER_TEMP: "${{ runner.temp }}"