We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f4354c commit 5940b3cCopy full SHA for 5940b3c
.goreleaser.yaml
@@ -15,12 +15,16 @@ builds:
15
16
archives:
17
- format: binary
18
- replacements:
19
- darwin: Darwin
20
- linux: Linux
21
- windows: Windows
22
- 386: i386
23
- amd64: x86_64
+ name_template: >-
+ {{- .ProjectName }}_
+ {{- if eq .Os "darwin" }}Darwin
+ {{- else if eq .Os "linux" }}Linux
+ {{- else if eq .Os "windows" }}Windows
+ {{- else }}{{ title .Os }}{{ end }}_
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
29
checksum:
30
name_template: 'checksums.txt'
0 commit comments