Skip to content

Commit dbd7793

Browse files
committed
fix(release): force legacy cosign bundle format
cosign v3 defaults to --new-bundle-format=true, which emits a single .sigstore.json bundle and ignores --output-signature/--output-certificate. Goreleaser's sign step still expects separate .sig and .pem files alongside each artifact, so forcing --new-bundle-format=false preserves the existing file layout without a goreleaser-side migration.
1 parent 5468e94 commit dbd7793

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.goreleaser.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ signs:
3030
certificate: "${artifact}.pem"
3131
args:
3232
- sign-blob
33+
- --new-bundle-format=false
3334
- --output-certificate=${certificate}
3435
- --output-signature=${signature}
3536
- ${artifact}

0 commit comments

Comments
 (0)