Skip to content

Commit ad5963f

Browse files
authored
build: enable skipping of confirmation for cosign (#373)
Signed-off-by: Ben Stickel <[email protected]>
1 parent 2ece7b3 commit ad5963f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/releaser.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -150,11 +150,11 @@ jobs:
150150
do
151151
case $f in
152152
provenance.json|checksums.txt)
153-
cosign sign-blob --key <(echo -n "${COSIGN_KEY}") "$f" > "$f.sig"
153+
cosign sign-blob --yes=true --key <(echo -n "${COSIGN_KEY}") "$f" > "$f.sig"
154154
;;
155155
*.tar.gz)
156156
sha256sum "$f" | cut -d " " -f 1 > "$f.sha256"
157-
cosign sign-blob --key <(echo -n "${COSIGN_KEY}") "$f" > "$f.sig"
157+
cosign sign-blob --yes=true --key <(echo -n "${COSIGN_KEY}") "$f" > "$f.sig"
158158
;;
159159
esac
160160
done

0 commit comments

Comments
 (0)