We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13447b7 commit 2aa5cf3Copy full SHA for 2aa5cf3
.github/workflows/release.yaml
@@ -37,10 +37,14 @@ jobs:
37
KO_DEFAULTBASEIMAGE: cgr.dev/chainguard/busybox
38
KO_DEFAULTPLATFORMS: linux/arm64,linux/amd64
39
- run: |
40
- echo "signing $(cat allstar.ref)"
41
- cosign sign --yes -a git_sha="$GITHUB_SHA" "$(cat allstar.ref)"
42
- echo "signing $(cat allstar-busybox.ref)"
43
- cosign sign --yes -a git_sha="$GITHUB_SHA" "$(cat allstar-busybox.ref)"
+ while read ref; do
+ echo "signing $ref"
+ cosign sign --yes -a git_sha="$GITHUB_SHA" "$ref"
+ done < allstar.ref
44
45
46
47
+ done < allstar-busybox.ref
48
49
50
gh release create ${{ github.ref_name }} --notes "Images:
0 commit comments