We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 147945b commit 2121164Copy full SHA for 2121164
.goreleaser.yml
@@ -27,13 +27,12 @@ builds:
27
- goos: windows
28
goarch: "arm64"
29
archives:
30
- - name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
31
- replacements:
32
- darwin: darwin
33
- linux: linux
34
- windows: windows
35
- 386: i386
36
- amd64: x86_64
+ - name_template: >-
+ {{ .ProjectName }}_
+ {{- title .Os }}_
+ {{- if eq .Arch "amd64" }}x86_64
+ {{- else if eq .Arch "386" }}i386
+ {{- else }}{{ .Arch }}{{ end }}
37
format_overrides:
38
39
format: zip
0 commit comments