File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -191,6 +191,5 @@ jobs:
191191
192192 - name : Retag and push the image
193193 run : |
194- echo $
195194 docker buildx imagetools create \
196195 $(jq -cr '.tags | map("--tag " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") $DOCKER_APP_IMAGE_ARM64 $DOCKER_APP_IMAGE_X64
Original file line number Diff line number Diff line change 4141 env :
4242 BASE_IMAGE : ${{ steps.get-base-image.outputs.tags }}
4343 run : |
44- docker pull "$BASE_IMAGE"
44+ docker manifest inspect "$BASE_IMAGE"
4545
4646 - name : Produce release tags
4747 id : tag-meta
5959 env :
6060 BASE_IMAGE : ${{ steps.get-base-image.outputs.tags }}
6161 run : |
62- echo "$DOCKER_METADATA_OUTPUT_TAGS" | tr ' ' '\n' | xargs -n1 docker tag "$BASE_IMAGE"
63- docker push --all-tags "$(echo "$BASE_IMAGE" | cut -f1 -d:)"
62+ docker buildx imagetools create \
63+ $(jq -cr '.tags | map("--tag " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
64+ "$(echo "$BASE_IMAGE" | cut -f1 -d:)"
You can’t perform that action at this time.
0 commit comments