From 4ca132ea0d78ee44f5375baa17ae3c7470ae5369 Mon Sep 17 00:00:00 2001 From: Jose Henrique Date: Mon, 13 Jul 2026 19:45:38 -0300 Subject: [PATCH] fix(build-and-push): use real ssh user in docker context URL (was literal '***') --- build-and-push/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-and-push/action.yaml b/build-and-push/action.yaml index 4a9e016..9f0ee8f 100644 --- a/build-and-push/action.yaml +++ b/build-and-push/action.yaml @@ -128,7 +128,7 @@ runs: docker context rm -f remote-builder 2>/dev/null || true 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. # This registration lives in the kernel and is lost on daemon/host