Skip to content

Commit

Permalink
fix(cosign): correctly sign multiple tags (#192)
Browse files Browse the repository at this point in the history
* fix(cosign): correctly sign multiple tags

* chore: fix linter findings
  • Loading branch information
rjaegers authored Nov 7, 2023
1 parent 9c769fa commit bcd2f38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@ jobs:
env:
DIGEST: ${{ steps.build-and-push.outputs.digest }}
TAGS: ${{ steps.meta.outputs.tags }}
run: cosign sign --yes "${TAGS}@${DIGEST}"
run: echo "${TAGS}" | xargs -I {} cosign sign --yes "{}@${DIGEST}"

0 comments on commit bcd2f38

Please sign in to comment.