We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2424304 commit a4be473Copy full SHA for a4be473
.goreleaser.yml
@@ -0,0 +1,27 @@
1
+# This is an example goreleaser.yaml file with some sane defaults.
2
+# Make sure to check the documentation at http://goreleaser.com
3
+before:
4
+ hooks:
5
+ # you may remove this if you don't use vgo
6
+ - go mod download
7
+ # you may remove this if you don't need go generate
8
+ - go generate ./...
9
+builds:
10
+-
11
+ env:
12
+ - CGO_ENABLED=0
13
+ goarch:
14
+ - amd64
15
+
16
+archive:
17
+ format: zip
18
+checksum:
19
+ name_template: 'checksums.txt'
20
+snapshot:
21
+ name_template: "{{ .Tag }}-next"
22
+changelog:
23
+ sort: asc
24
+ filters:
25
+ exclude:
26
+ - '^docs:'
27
+ - '^test:'
0 commit comments