We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df43562 commit 69e4d82Copy full SHA for 69e4d82
1 file changed
.github/workflows/wc-build-push.yml
@@ -129,12 +129,12 @@ jobs:
129
130
# shellcheck disable=SC2046
131
ANNOTATIONS=$(echo '${{ steps.metadata.outputs.json }}' | jq -cr '.annotations | map("--annotation \"" + . + "\"") | join(" ")')
132
- TAGS=$(echo '${{ steps.metadata.outputs.json }}' | jq -cr '.tags | map("--tag " + . + "\"") | join(" ")')
+ TAGS=$(echo '${{ steps.metadata.outputs.json }}' | jq -cr '.tags | map("--tag \"" + . + "\"") | join(" ")')
133
134
# Build the command and execute it
135
docker buildx imagetools create \
136
- ${ANNOTATIONS/'/} \
137
- ${TAGS/'/} \
+ ${ANNOTATIONS} \
+ ${TAGS} \
138
$(printf '${{ env.REGISTRY }}/${{ github.repository }}-${{ inputs.flavor }}@sha256:%s ' *)
139
- name: Inspect manifest and extract digest
140
id: inspect-manifest
0 commit comments