Skip to content

Commit 2cf53e4

Browse files
authored
Create .goreleaser.yaml (#137)
1 parent 7626274 commit 2cf53e4

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.goreleaser.yaml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
before:
2+
hooks:
3+
# You may remove this if you don't use go modules.
4+
- go mod tidy
5+
# # you may remove this if you don't need go generate
6+
# - go generate ./...
7+
builds:
8+
- env:
9+
- CGO_ENABLED=0
10+
goos:
11+
- linux
12+
- windows
13+
- darwin
14+
archives:
15+
- replacements:
16+
darwin: Darwin
17+
linux: Linux
18+
windows: Windows
19+
386: i386
20+
amd64: x86_64
21+
checksum:
22+
name_template: 'checksums.txt'
23+
snapshot:
24+
name_template: "{{ incpatch .Version }}-next"
25+
changelog:
26+
sort: asc
27+
filters:
28+
exclude:
29+
- '^docs:'
30+
- '^test:'

0 commit comments

Comments
 (0)