We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5350be1 commit 504be3aCopy full SHA for 504be3a
.github/workflows/bake.yaml
@@ -77,10 +77,9 @@ jobs:
77
# how to use cosign.
78
- name: Sign images
79
run: |
80
- images=$(echo '${{ steps.build.outputs.metadata }}' |
81
- jq '.[] | (."image.name" | sub(",.*";"" )) + "@" + ."containerimage.digest"'
82
- )
83
- cosign sign --yes ${images}
+ echo '${{ steps.build.outputs.metadata }}' | \
+ jq '.[] | (."image.name" | sub(",.*";"" )) + "@" + ."containerimage.digest"' | \
+ xargs cosign sign --yes
84
85
security:
86
name: Security checks
0 commit comments