2
/ ssh-client-container-build-push (push) Failing after 12s

This commit is contained in:
Márcio Fernandes
2026-05-02 12:52:10 +00:00
parent 95b1066788
commit b0affd096e
2 changed files with 13 additions and 1 deletions
@@ -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 }}"