mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
fix(ci): Be explicit about which Docker platforms to pull and push for (#3276)
This commit is contained in:
4
.github/workflows/publish.yml
vendored
4
.github/workflows/publish.yml
vendored
@@ -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}"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user