We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5b304a3 + b08fffa commit 72f9da3Copy full SHA for 72f9da3
.goreleaser.yml
@@ -6,6 +6,8 @@ release:
6
extra_files:
7
- glob: dist/*.sig
8
- glob: dist/*.pub
9
+ - glob: dist/*.yaml
10
+ - glob: dist/*.txt
11
12
env:
13
- DOCKER_CLI_EXPERIMENTAL=enabled
@@ -32,7 +34,13 @@ builds:
32
34
sboms:
33
35
- id: checksec
36
documents:
- - "${artifact}.spdx.sbom.json"
37
+ - "${artifact}-{{ .Os }}-{{ .Arch }}.spdx.sbom.json"
38
cmd: syft
- args: ["$artifact", "--output", "cyclonedx-json=$document"]
39
+ args: ["${artifact}", "--output", "cyclonedx-json=${document}"]
40
artifacts: binary
41
+
42
+checksum:
43
+ name_template: "{{ .ProjectName }}_checksums.sha512"
44
+ algorithm: sha512
45
46
+report_sizes: true
Makefile
@@ -1,5 +1,5 @@
1
SHELL = bash
2
-VERSION ?= 3.0.1
+VERSION ?= 3.0.2
3
4
.PHONY: test
5
test:
0 commit comments