File tree Expand file tree Collapse file tree 2 files changed +40
-0
lines changed
Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Original file line number Diff line number Diff line change 1717
1818# env file.
1919.env
20+
21+ # Goreleaser generated files.
22+ dist /
Original file line number Diff line number Diff line change 1+ # yaml-language-server: $schema=https://goreleaser.com/static/schema.json
2+ # vim: set ts=2 sw=2 tw=0 fo=cnqoj
3+
4+ version : 1
5+
6+ before :
7+ hooks :
8+ - go mod tidy
9+ - go generate ./...
10+
11+ builds :
12+ - env :
13+ - CGO_ENABLED=0
14+ goos :
15+ - linux
16+ - windows
17+ - darwin
18+
19+ archives :
20+ - format : tar.gz
21+ name_template : >-
22+ {{ .ProjectName }}_
23+ {{- title .Os }}_
24+ {{- if eq .Arch "amd64" }}x86_64
25+ {{- else if eq .Arch "386" }}i386
26+ {{- else }}{{ .Arch }}{{ end }}
27+ {{- if .Arm }}v{{ .Arm }}{{ end }}
28+ format_overrides :
29+ - goos : windows
30+ format : zip
31+
32+ changelog :
33+ sort : asc
34+ filters :
35+ exclude :
36+ - " ^docs:"
37+ - " ^test:"
You can’t perform that action at this time.
0 commit comments