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 7901348 commit c2243d2Copy full SHA for c2243d2
.goreleaser.yaml
@@ -6,6 +6,7 @@
6
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
7
# vim: set ts=2 sw=2 tw=0 fo=cnqoj
8
9
+# TODO: rename file outputs for release assets to be lowercase not capital
10
version: 1
11
12
before:
@@ -27,9 +28,10 @@ builds:
27
28
archives:
29
- format: tar.gz
30
# this name template makes the OS and Arch compatible with the results of `uname`.
31
+ # Note removal of "title" because it uppercases the first letter
32
name_template: >-
33
{{ .ProjectName }}_
- {{- title .Os }}_
34
+ {{- .Os }}_
35
{{- if eq .Arch "amd64" }}x86_64
36
{{- else if eq .Arch "386" }}i386
37
{{- else }}{{ .Arch }}{{ end }}
0 commit comments