File tree Expand file tree Collapse file tree 2 files changed +42
-3
lines changed Expand file tree Collapse file tree 2 files changed +42
-3
lines changed Original file line number Diff line number Diff line change 11
11
# Output of the go coverage tool, specifically when used with LiteIDE
12
12
* .out
13
13
14
- # Dependency directories (remove the comment below to include it)
15
- # vendor/
16
-
17
14
# Go workspace file
18
15
go.work
19
16
20
17
# ## Go Patch ###
21
18
/vendor /
22
19
/Godeps /
20
+
21
+ # GoReleaser
22
+ 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
+ - env :
11
+ - CGO_ENABLED=0
12
+ goos :
13
+ - linux
14
+ - windows
15
+ - darwin
16
+ archives :
17
+ - files :
18
+ - README.md
19
+ - LICENSE
20
+ - ' preview.png'
21
+ format_overrides :
22
+ - goos : windows
23
+ format : zip
24
+ replacements :
25
+ darwin : Darwin
26
+ linux : Linux
27
+ windows : Windows
28
+ 386 : i386
29
+ amd64 : x86_64
30
+ checksum :
31
+ name_template : ' checksums.txt'
32
+ snapshot :
33
+ name_template : " {{ incpatch .Version }}-next"
34
+ changelog :
35
+ sort : asc
36
+ filters :
37
+ exclude :
38
+ - ' ^docs:'
39
+ - ' ^test:'
You can’t perform that action at this time.
0 commit comments