-
Notifications
You must be signed in to change notification settings - Fork 5
/
.goreleaser.yml
128 lines (116 loc) · 2.7 KB
/
.goreleaser.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
project_name: sn-cli
env:
- GO111MODULE=on
- GOPROXY=https://proxy.golang.org
- CGO_ENABLED=0
before:
hooks:
- make clean
- go mod tidy
# join mac binaries into one
universal_binaries:
- id: sn-macos
ids:
- sn-macos-amd64
- sn-macos-arm
name_template: "sn"
replace: true
mod_timestamp: "{{ .CommitTimestamp }}"
hooks:
post: |
sh -c 'cat <<EOF > /tmp/sn-cli-gon-universal.hcl
source = ["./dist/sn-macos_darwin_all/sn"]
bundle_id = "uk.co.lessknown.sn-cli"
apple_id {
username = "[email protected]"
password = "@env:AC_PASSWORD"
}
sign {
application_identity = "Developer ID Application: Jonathan Hadfield (VBZY8FBYR5)"
}
zip {
output_path = "./dist/sn-cli_Darwin_all.zip"
}
EOF
gon /tmp/sn-cli-gon-universal.hcl
'
builds:
- id: sn-macos-amd64
main: ./cmd/sncli/
binary: sn
goos:
- darwin
goarch:
- amd64
flags:
- -trimpath
ldflags:
- "-s -w -X main.version={{ .Version }} -X main.sha={{ .ShortCommit }} -X main.buildDate={{ .Date }} -X main.tag={{ .Tag }}"
- id: sn-macos-arm
main: ./cmd/sncli/
binary: sn
goos:
- darwin
goarch:
- arm64
flags:
- -trimpath
ldflags:
- "-s -w -X main.version={{ .Version }} -X main.sha={{ .ShortCommit }} -X main.buildDate={{ .Date }} -X main.tag={{ .Tag }}"
- id: sn
main: ./cmd/sncli/
binary: sn
goos:
- linux
- windows
goarch:
- amd64
- arm64
goarm:
- 6
- 7
flags:
- -trimpath
ldflags:
- "-s -w -X main.version={{ .Version }} -X main.sha={{ .ShortCommit }} -X main.buildDate={{ .Date }} -X main.tag={{ .Tag }}"
archives:
- name_template: >-
{{ .ProjectName }}_
{{- if eq .Os "linux" }}Linux_
{{- else if eq .Os "windows" }}Windows_
{{- else }}{{- tolower .Os }}_{{ end -}}
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end -}}
{{ if .Arm }}v{{ .Arm }}{{ end -}}
builds:
- sn
format: tar.gz
format_overrides:
- goos: windows
format: zip
files:
- none*
release:
github:
owner: jonhadfield
name: sn-cli
prerelease: auto
name_template: '{{ .Tag }}'
extra_files:
- glob: ./dist/sn-cli_Darwin*.zip
announce:
skip: true
snapshot:
name_template: "{{ .Tag }}-devel"
changelog:
sort: asc
filters:
exclude:
- README
- test
- ignore
checksum:
extra_files:
- glob: ./dist/sn-cli_Darwin*.zip
name_template: 'checksums.txt'