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 be5d22e commit 3bd7968Copy full SHA for 3bd7968
.goreleaser.yml
@@ -36,8 +36,11 @@ archives:
36
- name_template: >-
37
{{- .ProjectName }}-
38
{{- .Tag }}-
39
- {{- .Os }}-
40
- {{- .Arch }}
+ {{- if eq .Os "darwin" }}macos
+ {{- else }}{{ .Os }}{{ end }}-
41
+ {{- if eq .Arch "amd64" }}x86_64
42
+ {{- else if eq .Arch "386" }}i386
43
+ {{- else }}{{ .Arch }}{{ end }}
44
{{- if .Arm }}{{ .Arm }}{{ end }}
45
wrap_in_directory: true
46
format: tar.gz
0 commit comments