Skip to content

Commit f7e044a

Browse files
committed
chore: update goreleaser.yml so it is compartible with latest version
Signed-off-by: Tomas Pizarro Moreno <[email protected]>
1 parent c5efdb6 commit f7e044a

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

.goreleaser.yml

+12-4
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,18 @@ dockers:
1919
extra_files:
2020
- assets/docker-login.sh
2121
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 }}"
22+
- format: tar.gz
23+
name_template: >-
24+
{{- .Binary }}_
25+
{{- .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
2634
files:
2735
- README.md
2836
checksum:

0 commit comments

Comments
 (0)