You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .goreleaser.yml
+16-8
Original file line number
Diff line number
Diff line change
@@ -37,10 +37,14 @@ changelog:
37
37
- '^test:'
38
38
39
39
archives:
40
-
- name_template: "{{ .ProjectName }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
41
-
replacements:
42
-
amd64: x86_64
43
-
386: i386
40
+
- name_template: >-
41
+
{{- .ProjectName }}-
42
+
{{- .Version }}-
43
+
{{- .Os }}-
44
+
{{- if eq .Arch "amd64" }}x86_64
45
+
{{- else if eq .Arch "386" }}i386
46
+
{{- else }}{{- .Arch }}{{ end }}
47
+
{{- if .Arm }}v{{- .Arm }}{{ end }}
44
48
format_overrides:
45
49
- goos: windows
46
50
format: zip
@@ -92,10 +96,14 @@ snapcrafts:
92
96
# https://snapcraft.io/docs/reference/channels
93
97
grade: stable
94
98
description: Exercism is an online platform designed to help you improve your coding skills through practice and mentorship. Exercism provides you with thousands of exercises spread across numerous language tracks. Each one is a fun and interesting challenge designed to teach you a little more about the features of a language.
95
-
name_template: "{{ .ProjectName }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
0 commit comments