-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.goreleaser.yml
More file actions
29 lines (29 loc) · 665 Bytes
/
.goreleaser.yml
File metadata and controls
29 lines (29 loc) · 665 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
builds:
- goos:
- windows
- darwin
- linux
goarch:
- amd64
- arm64
archives:
- id: default
name_template: >-
{{- .ProjectName }}_
{{- .Version }}_
{{- if eq .Os "darwin" }}macos_
{{- else }}{{ .Os }}_{{ end }}
{{- if eq .Arch "amd64" }}64-bit
{{- else if eq .Arch "arm64" }}arm64
{{- else if eq .Arch "386" }}i386
{{- else if eq .Arch "darwin" }}apple
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end -}}
format_overrides:
- goos: windows
format: zip
files:
- NOTICE*
- LICENSE*
- README*
- CHANGELOG*