From 8689226ca63ea0e66dc2e66efd19dc9222f3e782 Mon Sep 17 00:00:00 2001 From: Jose Henrique Date: Sun, 12 Jul 2026 12:47:17 -0300 Subject: [PATCH] fix(build-and-push): pass docker context as positional arg to buildx create --context is not supported on this buildx version; the context name is a positional [CONTEXT|ENDPOINT] argument --- 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 f1f1c0e..aabb5b9 100644 --- a/build-and-push/action.yaml +++ b/build-and-push/action.yaml @@ -91,7 +91,7 @@ runs: # instance* named remote-builder, not just a context. Create it from the # SSH context so it resolves to the remote engine over SSH. docker buildx rm -f remote-builder 2>/dev/null || true - docker buildx create --name remote-builder --context remote-builder --use + docker buildx create --name remote-builder --use remote-builder docker buildx inspect --bootstrap - name: Generate tags list