File tree 1 file changed +34
-0
lines changed
1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change
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
+ goos :
13
+ - linux
14
+ - windows
15
+ - darwin
16
+ archives :
17
+ - replacements :
18
+ darwin : Darwin
19
+ linux : Linux
20
+ windows : Windows
21
+ 386 : i386
22
+ amd64 : x86_64
23
+ checksum :
24
+ name_template : ' checksums.txt'
25
+ env_files :
26
+ github_token : C:/_goworkspace/src/github.com/aleksaan/github_token/token_aleksaan.txt
27
+ snapshot :
28
+ name_template : " {{ .Tag }}-next"
29
+ changelog :
30
+ sort : asc
31
+ filters :
32
+ exclude :
33
+ - ' ^docs:'
34
+ - ' ^test:'
You can’t perform that action at this time.
0 commit comments