File tree Expand file tree Collapse file tree 1 file changed +18
-14
lines changed Expand file tree Collapse file tree 1 file changed +18
-14
lines changed Original file line number Diff line number Diff line change 1
1
# This is an example .goreleaser.yml file with some sensible defaults.
2
2
# Make sure to check the documentation at https://goreleaser.com
3
+
4
+ # The lines below are called `modelines`. See `:help modeline`
5
+ # Feel free to remove those if you don't want/need to use them.
6
+ # yaml-language-server: $schema=https://goreleaser.com/static/schema.json
7
+ # vim: set ts=2 sw=2 tw=0 fo=cnqoj
8
+
9
+ version : 2
10
+
11
+ project_name : dotsec
12
+
3
13
before :
4
14
hooks :
5
15
# You may remove this if you don't use go modules.
6
16
- go mod tidy
7
17
# you may remove this if you don't need go generate
8
18
- go generate ./...
19
+
9
20
builds :
10
21
- env :
11
22
- CGO_ENABLED=0
@@ -16,7 +27,7 @@ builds:
16
27
17
28
archives :
18
29
- format : tar.gz
19
- # this name template makes the OS and Arch compatible with the results of uname.
30
+ # this name template makes the OS and Arch compatible with the results of ` uname` .
20
31
name_template : >-
21
32
{{ .ProjectName }}_
22
33
{{- title .Os }}_
@@ -26,20 +37,13 @@ archives:
26
37
{{- if .Arm }}v{{ .Arm }}{{ end }}
27
38
# use zip for windows archives
28
39
format_overrides :
29
- - goos : windows
30
- format : zip
31
- checksum :
32
- name_template : ' checksums.txt'
33
- snapshot :
34
- name_template : " {{ incpatch .Version }}-next"
40
+ - goos : windows
41
+ format : zip
42
+
43
+
35
44
changelog :
36
45
sort : asc
37
46
filters :
38
47
exclude :
39
- - ' ^docs:'
40
- - ' ^test:'
41
-
42
- # The lines beneath this are called `modelines`. See `:help modeline`
43
- # Feel free to remove those if you don't want/use them.
44
- # yaml-language-server: $schema=https://goreleaser.com/static/schema.json
45
- # vim: set ts=2 sw=2 tw=0 fo=cnqoj
48
+ - " ^docs:"
49
+ - " ^test:"
You can’t perform that action at this time.
0 commit comments