build-push: drop the empty ${{ }} that silenced the registry login #155

Merged
admin_emi merged 1 commit from fix/build-push-empty-expression into dev 2026-08-01 18:18:46 +00:00

View file

@ -131,7 +131,7 @@ jobs:
# credential that was in fact valid. Strip first, echo never. # credential that was in fact valid. Strip first, echo never.
# #
# The token also goes through the ENVIRONMENT rather than being # The token also goes through the ENVIRONMENT rather than being
# interpolated into the script text. `${{ }}` is substituted before bash # interpolated into the script text. An expression is substituted before bash
# parses the line, so a value containing a quote or newline would change # parses the line, so a value containing a quote or newline would change
# the shape of the command itself rather than just its arguments. # the shape of the command itself rather than just its arguments.
tok=$(printf '%s' "$REGISTRY_TOKEN" | tr -d ' \t\r\n') tok=$(printf '%s' "$REGISTRY_TOKEN" | tr -d ' \t\r\n')