From 5127f96d51a8e6b0941df09e5a3332ab5f52a5e7 Mon Sep 17 00:00:00 2001 From: scbizu Date: Fri, 3 Nov 2023 20:10:39 +0800 Subject: [PATCH] ci: release: pass --yes to skip cosign prompt Refers to https://github.com/sigstore/cosign/issues/3158 Signed-off-by: scbizu --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7fc93c52..e7c9a588 100644 --- a/Makefile +++ b/Makefile @@ -198,7 +198,7 @@ sbom: cosign: for f in $$(ls _dist/*.{gz,zip,sha256sum,spdx} 2>/dev/null) ; do \ echo "Creating $${f}.sig" ; \ - cosign sign-blob --output-file "$${f}.sig" "$${f}"; \ + cosign sign-blob --yes --output-file "$${f}.sig" "$${f}"; \ done .PHONY: sign