File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -127,12 +127,10 @@ jobs:
127127 run : |
128128 set -xEeuo pipefail
129129
130- echo '${{ steps.metadata.outputs.json }}' | jq -r '.annotations | map("--annotation " + @sh) | join(" ")' > annotations
131-
132130 # shellcheck disable=SC2046
133131 docker buildx imagetools create \
134- $(cat annotations) \
135- $(echo '${{ steps.metadata.outputs.json }}' | jq -r '.tags | map("--tag " + @sh) | join(" ")') \
132+ $(echo '${{ steps.metadata.outputs.json }}' | jq -cr '. annotations | map("--annotation " + @sh) | join(" ")' ) \
133+ $(echo '${{ steps.metadata.outputs.json }}' | jq -cr '.tags | map("--tag " + @sh) | join(" ")') \
136134 $(printf '${{ env.REGISTRY }}/${{ github.repository }}-${{ inputs.flavor }}@sha256:%s ' *)
137135 - name : Inspect manifest and extract digest
138136 id : inspect-manifest
You can’t perform that action at this time.
0 commit comments