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 775c4f8 commit 2f35198Copy full SHA for 2f35198
.goreleaser.yml
@@ -0,0 +1,28 @@
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 go modules.
6
+ - go mod download
7
+ # you may remove this if you don't need go generate
8
+ - go generate ./...
9
+builds:
10
+- env:
11
+ - CGO_ENABLED=0
12
+archives:
13
+- replacements:
14
+ darwin: Darwin
15
+ linux: Linux
16
+ windows: Windows
17
+ 386: i386
18
+ amd64: x86_64
19
+checksum:
20
+ name_template: 'checksums.txt'
21
+snapshot:
22
+ name_template: "{{ .Tag }}-next"
23
+changelog:
24
+ sort: asc
25
+ filters:
26
+ exclude:
27
+ - '^docs:'
28
+ - '^test:'
0 commit comments