Skip to content

Commit b5e1e7a

Browse files
authoredAug 8, 2023
Fix goreleaser artifact names (#125)
1 parent 3a6bd03 commit b5e1e7a

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed
 

‎.goreleaser.yaml

+1-7
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,7 @@ source:
1717
archives:
1818
# Default template uses underscores instead of -
1919
- name_template: >-
20-
{{ .ProjectName }}-
21-
{{ .Tag }}-
22-
{{- title .Os }}-
23-
{{- if eq .Arch "amd64" }}x86_64
24-
{{- else if eq .Arch "386" }}i386
25-
{{- else }}{{ .Arch }}{{ end }}
26-
{{- if .Arm }}v{{ .Arm }}{{ end }}
20+
{{ .ProjectName }}-{{ .Tag }}-{{- title .Os }}-{{- if eq .Arch "amd64" }}x86_64{{- else if eq .Arch "386" }}i386{{- else }}{{ .Arch }}{{ end }}{{- if .Arm }}v{{ .Arm }}{{ end }}
2721
checksum:
2822
name_template: '{{ .ProjectName }}-{{ .Tag }}-checksums.txt'
2923
snapshot:

0 commit comments

Comments
 (0)
Please sign in to comment.