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 9f9968e commit 96cdd01Copy full SHA for 96cdd01
.goreleaser.yml
@@ -14,13 +14,14 @@ builds:
14
- windows
15
- darwin
16
archives:
17
- - name_template: "{{ .Binary }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
18
- replacements:
19
- darwin: Darwin
20
- linux: Linux
21
- windows: Windows
22
- 386: i386
23
- amd64: x86_64
+ - name_template: >-
+ {{- .Binary }}_
+ {{- .Version }}_
+ {{- title .Os }}_
+ {{- if eq .Arch "amd64" }}x86_64
+ {{- else if eq .Arch "386" }}i386
+ {{- else }}{{ .Arch }}{{ end }}
24
+ {{- if .Arm }}v{{ .Arm }}{{ end -}}
25
snapshot:
26
name_template: "{{ .Tag }}-next"
27
changelog:
0 commit comments