fix(build-and-push): use real ssh user in docker context URL (was literal '***')
All checks were successful
Test build-and-push (self-test) / Build tiny multi-arch image (push) Successful in 9s

This commit is contained in:
2026-07-13 19:45:38 -03:00
parent fc7ed6bd15
commit 4ca132ea0d

View File

@@ -128,7 +128,7 @@ runs:
docker context rm -f remote-builder 2>/dev/null || true docker context rm -f remote-builder 2>/dev/null || true
docker context create remote-builder \ docker context create remote-builder \
--docker "host=ssh://***@${BUILDER_HOST}" --docker "host=ssh://${BUILDER_USER}@${BUILDER_HOST}"
# Ensure qemu/binfmt is registered on the remote for cross-arch builds. # Ensure qemu/binfmt is registered on the remote for cross-arch builds.
# This registration lives in the kernel and is lost on daemon/host # This registration lives in the kernel and is lost on daemon/host