We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9dcd36 commit 4ce3d4dCopy full SHA for 4ce3d4d
.goreleaser.yml
@@ -98,3 +98,27 @@ changelog:
98
exclude:
99
- '^docs:'
100
- '^test:'
101
+
102
+sboms:
103
+ - artifacts: archive
104
105
+# sign checksums/archives using Cosign
106
+signs:
107
+ - artifacts: checksum
108
+ cmd: cosign
109
+ args:
110
+ - "sign-blob"
111
+ - "--key=env://COSIGN_PRIVATE_KEY"
112
+ - "--output-signature=${signature}"
113
+ - "--yes"
114
+ - "${artifact}"
115
116
+# sign published Docker images using Cosign
117
+docker_signs:
118
+ - artifacts: manifests
119
120
121
+ - "sign"
122
123
124
0 commit comments