File tree Expand file tree Collapse file tree 2 files changed +35
-0
lines changed
Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Original file line number Diff line number Diff line change 55ergo-test
66cmd /cli /cli
77coverage.txt
8+
9+ dist /
Original file line number Diff line number Diff line change 1+ # This is an example .goreleaser.yml file with some sensible defaults.
2+ # Make sure to check the documentation at https://goreleaser.com
3+ before :
4+ hooks :
5+ # You may remove this if you don't use go modules.
6+ - go mod tidy
7+ # you may remove this if you don't need go generate
8+ - go generate ./...
9+ builds :
10+ - main : ./cmd/cli/main.go
11+ env :
12+ - CGO_ENABLED=0
13+ goos :
14+ - linux
15+ - windows
16+ - darwin
17+ archives :
18+ - replacements :
19+ darwin : Darwin
20+ linux : Linux
21+ windows : Windows
22+ 386 : i386
23+ amd64 : x86_64
24+ checksum :
25+ name_template : ' checksums.txt'
26+ snapshot :
27+ name_template : " {{ incpatch .Version }}-next"
28+ changelog :
29+ sort : asc
30+ filters :
31+ exclude :
32+ - ' ^docs:'
33+ - ' ^test:'
You can’t perform that action at this time.
0 commit comments