diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 28cb6b8..647754b 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -99,7 +99,7 @@ jobs: - name: Create manifest list and push working-directory: /tmp/digests run: | - docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ + docker buildx imagetools create $(jq -cr '.tags | map("-t " + . | sub(":v";":")) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ $(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *) - name: Inspect image diff --git a/.github/workflows/mainAndTest.yml b/.github/workflows/mainAndTest.yml index 97233e9..862e53c 100644 --- a/.github/workflows/mainAndTest.yml +++ b/.github/workflows/mainAndTest.yml @@ -102,7 +102,7 @@ jobs: - name: Create manifest list and push working-directory: /tmp/digests run: | - docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ + docker buildx imagetools create $(jq -cr '.tags | map("-t " + . | sub(":v";":")) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ $(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *) - name: Inspect image