From 666cb45724d4761237a173ad3d0b40fec6a90d3a Mon Sep 17 00:00:00 2001 From: Jamil Date: Wed, 17 Jan 2024 00:59:32 -0800 Subject: [PATCH] fix(ci): Be explicit about which Docker platforms to pull and push for (#3276) --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7279511c9..73cf18118 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -62,7 +62,7 @@ jobs: for image in "${IMAGES[@]}"; do SOURCE_TAG=${{ steps.login-staging.outputs.registry }}/firezone/${image}:${{ inputs.tag || github.sha }} - docker pull ${SOURCE_TAG} + docker pull --platform linux/amd64 ${SOURCE_TAG} echo "Retagging ${image} from ${SOURCE_TAG}" @@ -156,7 +156,7 @@ jobs: for image in "${IMAGES[@]}"; do SOURCE_TAG=${{ steps.login.outputs.registry }}/firezone/${image}:${{ inputs.tag || github.sha }} - docker pull ${SOURCE_TAG} + docker pull --all-tags ${SOURCE_TAG} echo "Retagging ${image} from ${SOURCE_TAG}"