We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16016a0 commit 29ed1e6Copy full SHA for 29ed1e6
.goreleaser.yaml
@@ -18,13 +18,12 @@ snapshot:
18
name_template: '{{ incpatch .Version }}-next'
19
20
archives:
21
- - name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
22
- replacements:
23
- darwin: Darwin
24
- linux: Linux
25
- windows: Windows
26
- 386: i386
27
- amd64: x86_64
+ - name_template: >-
+ {{ .ProjectName }}_
+ {{- title .Os }}_
+ {{- if eq .Arch "amd64" }}x86_64
+ {{- else if eq .Arch "386" }}i386
+ {{- else }}{{ .Arch }}{{ end }}
28
format_overrides:
29
- goos: windows
30
format: zip
0 commit comments