fix(ci): Be explicit about which Docker platforms to pull and push for (#3276)

This commit is contained in:
Jamil
2024-01-17 00:59:32 -08:00
committed by GitHub
parent fda49a17d6
commit 666cb45724

View File

@@ -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}"