We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0b713e commit 50cb244Copy full SHA for 50cb244
.goreleaser.yml
@@ -14,12 +14,12 @@ builds:
14
# List of replacements generated by goreleaser to match the output of `uname`
15
# on various systems. This will make the binary more easily curl-able.
16
archives:
17
- - replacements:
18
- darwin: Darwin
19
- linux: Linux
20
- windows: Windows
21
- 386: i386
22
- amd64: x86_64
+ - name_template: >-
+ {{ .ProjectName }}_
+ {{- title .Os }}_
+ {{- if eq .Arch "amd64" }}x86_64
+ {{- else if eq .Arch "386" }}i386
+ {{- else }}{{ .Arch }}{{ end }}
23
24
checksum:
25
name_template: 'checksums.txt'
0 commit comments