We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c7b678 commit b6ac646Copy full SHA for b6ac646
1 file changed
.github/workflows/build_and_publish.yaml
@@ -88,7 +88,9 @@ jobs:
88
89
- name: Create Multi-Arch Manifest
90
run: |
91
- docker buildx imagetools create $(echo $DOCKER_METADATA_OUTPUT_TAGS | sed 's/,/ -t /g' | sed 's/^/-t /') \
+ RAW_TAGS="${{ steps.meta.outputs.tags }}"
92
+ TAGS_ARGS=$(echo $RAW_TAGS | sed 's/[^[:space:]]\+/--tag &/g')
93
+ docker buildx imagetools create $TAGS_ARGS \
94
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }}-amd64 \
95
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }}-aarch64
96
env:
0 commit comments