We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5efdb6 commit f7e044aCopy full SHA for f7e044a
.goreleaser.yml
@@ -19,10 +19,18 @@ dockers:
19
extra_files:
20
- assets/docker-login.sh
21
archives:
22
- - replacements:
23
- 386: i386
24
- amd64: x86_64
25
- name_template: "{{ .Binary }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}{{ if .Mips }}_{{ .Mips }}{{ end }}"
+ - format: tar.gz
+ name_template: >-
+ {{- .Binary }}_
+ {{- .Version }}_
26
+ {{- .Os }}_
27
+ {{- if eq .Arch "amd64" }}x86_64
28
+ {{- else if eq .Arch "386" }}i386
29
+ {{- else }}{{ .Arch }}{{ end }}
30
+ {{- if .Arm }}v{{ .Arm }}{{ end -}}
31
+ format_overrides:
32
+ - goos: windows
33
+ format: zip
34
files:
35
- README.md
36
checksum:
0 commit comments