We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e491fd commit 54a5695Copy full SHA for 54a5695
.goreleaser.yml
@@ -21,15 +21,19 @@ builds:
21
- 6
22
- 7
23
archives:
24
-- replacements:
25
- darwin: MacOS
26
- linux: Linux
27
- windows: Windows
28
- freebsd: FreeBSD
29
- netbsd: NetBSD
30
- openbsd: OpenBSD
31
- 386: i386
32
- amd64: x86_64
+ - id: s3sync
+ name_template: >-
+ {{ .ProjectName }}_
+ {{- if eq .Os "darwin" }}MacOS_
+ {{- else if eq .Os "linux" }}Linux_
+ {{- else if eq .Os "windows" }}Windows_
+ {{- else if eq .Os "freebsd" }}FreeBSD_
+ {{- else if eq .Os "netbsd" }}NetBSD_
+ {{- else if eq .Os "openbsd" }}OpenBSD_
33
+ {{- else }}{{ .Os }}_{{ end }}
34
+ {{- if eq .Arch "amd64" }}x86_64
35
+ {{- else if eq .Arch "386" }}i386
36
+ {{- else }}{{ .Arch }}{{ end }}
37
checksum:
38
name_template: 'checksums.txt'
39
snapshot:
0 commit comments