-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.goreleaser.yml
330 lines (309 loc) · 9.96 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
version: 2
before:
hooks:
- go mod download
- go generate ./...
- ./scripts/completions.sh
- ./scripts/manpages.sh
builds:
- binary: voiceflow
env:
- CGO_ENABLED=0
ldflags:
- -s -w -X github.com/xavidop/voiceflow-cli/internal/global.VersionString={{.Version}}
goos:
- linux
- darwin
- windows
goarch:
- "386"
- amd64
- arm
- arm64
goarm:
- "7"
archives:
- name_template: >-
voiceflow_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
format_overrides:
- goos: windows
format: zip
builds_info:
group: root
owner: root
files:
- README.md
- LICENSE.md
- completions/*
- manpages/*
universal_binaries:
- replace: false
name_template: 'voiceflow_{{.Version}}'
checksum:
name_template: 'checksums.txt'
snapshot:
version_template: "{{ .Tag }}-next"
changelog:
sort: asc
use: github
filters:
exclude:
- '^test:'
- '^chore'
- 'merge conflict'
- Merge pull request
- Merge remote-tracking branch
- Merge branch
- go mod tidy
groups:
- title: Dependency updates
regexp: '^.*?(feat|fix)\(deps\)!?:.+$'
order: 300
- title: 'New Features'
regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
order: 100
- title: 'Bug fixes'
regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$'
order: 200
- title: 'Documentation updates'
regexp: ^.*?doc(\([[:word:]]+\))??!?:.+$
order: 400
- title: Other work
order: 9999
signs:
- cmd: cosign
certificate: "${artifact}.pem"
output: true
artifacts: checksum
args:
- sign-blob
- "--output-certificate=${certificate}"
- "--output-signature=${signature}"
- "${artifact}"
- --yes
aurs:
- homepage: https://voiceflow.xavidop.me
description: The CLI for your Voiceflow projects
maintainers:
- 'Xavier Portilla Edo <xavierportillaedo at gmail dot com>'
license: Apache-2.0
private_key: '{{ .Env.AUR_KEY }}'
git_url: 'ssh://aur@aur.archlinux.org/voiceflow-bin.git'
name: voiceflow
package: |-
# bin
install -Dm755 "./voiceflow" "${pkgdir}/usr/bin/voiceflow"
# license
install -Dm644 "./LICENSE.md" "${pkgdir}/usr/share/licenses/voiceflow/LICENSE"
# completions
mkdir -p "${pkgdir}/usr/share/bash-completion/completions/"
mkdir -p "${pkgdir}/usr/share/zsh/site-functions/"
mkdir -p "${pkgdir}/usr/share/fish/vendor_completions.d/"
install -Dm644 "./completions/voiceflow.bash" "${pkgdir}/usr/share/bash-completion/completions/voiceflow"
install -Dm644 "./completions/voiceflow.zsh" "${pkgdir}/usr/share/zsh/site-functions/_voiceflow"
install -Dm644 "./completions/voiceflow.fish" "${pkgdir}/usr/share/fish/vendor_completions.d/voiceflow.fish"
# man pages
install -Dm644 "./manpages/voiceflow.1.gz" "${pkgdir}/usr/share/man/man1/voiceflow.1.gz"
nfpms:
- file_name_template: 'voiceflow_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ with .Arm }}v{{ . }}{{ end }}{{ with .Mips }}_{{ . }}{{ end }}{{ if not (eq .Amd64 "v1") }}{{ .Amd64 }}{{ end }}'
package_name: voiceflow
id: packages
homepage: https://voiceflow.xavidop.me
description: |-
The CLI to interact with your Voiceflow projects.
maintainer: Xavier Portilla Edo <xavierportillaedo@gmail.com>
license: Apache-2.0
vendor: Xavier Portilla Edo
bindir: /usr/bin
section: utils
contents:
- src: ./completions/voiceflow.bash
dst: /usr/share/bash-completion/completions/voiceflow
file_info:
mode: 0644
- src: ./completions/voiceflow.fish
dst: /usr/share/fish/vendor_completions.d/voiceflow.fish
file_info:
mode: 0644
- src: ./completions/voiceflow.zsh
dst: /usr/share/zsh/vendor-completions/_voiceflow
file_info:
mode: 0644
- src: ./LICENSE.md
dst: /usr/share/doc/voiceflow/copyright
file_info:
mode: 0644
- src: ./manpages/voiceflow.1.gz
dst: /usr/share/man/man1/voiceflow.1.gz
file_info:
mode: 0644
formats:
- apk
- deb
- rpm
- archlinux
deb:
lintian_overrides:
- statically-linked-binary
- changelog-file-missing-in-native-package
snapcrafts:
- name_template: 'voiceflow_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
name: voiceflow
summary: The CLI to interact with your Voiceflow projects
description: |
The CLI to interact with your Voiceflow projects.
grade: stable
confinement: strict
publish: true
dockers:
- image_templates:
- 'xavidop/voiceflow:{{ .Tag }}-amd64'
- 'ghcr.io/xavidop/voiceflow:{{ .Tag }}-amd64'
dockerfile: Dockerfile
use: buildx
build_flag_templates:
- "--pull"
- "--label=io.artifacthub.package.readme-url=https://raw.githubusercontent.com/xavidop/voiceflow-cli/master/README.md"
- "--label=io.artifacthub.package.logo-url=https://voiceflow.xavidop.me/images/logo.png"
- "--label=io.artifacthub.package.maintainers=[{\"name\":\"Xavier Portilla Edo\",\"email\":\"xavierportillaedo@gmail.com\"}]"
- "--label=io.artifacthub.package.license=Apache-2.0"
- "--label=org.opencontainers.image.description=The CLI to interact with your Voiceflow projects"
- "--label=org.opencontainers.image.created={{.Date}}"
- "--label=org.opencontainers.image.name={{.ProjectName}}"
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
- "--label=org.opencontainers.image.version={{.Version}}"
- "--label=org.opencontainers.image.source={{.GitURL}}"
- "--platform=linux/amd64"
- image_templates:
- 'xavidop/voiceflow:{{ .Tag }}-arm64'
- 'ghcr.io/xavidop/voiceflow:{{ .Tag }}-arm64'
dockerfile: Dockerfile
use: buildx
build_flag_templates:
- "--pull"
- "--label=io.artifacthub.package.readme-url=https://raw.githubusercontent.com/xavidop/voiceflow-cli/master/README.md"
- "--label=io.artifacthub.package.logo-url=https://voiceflow.xavidop.me/images/logo.png"
- "--label=io.artifacthub.package.maintainers=[{\"name\":\"Xavier Portilla Edo\",\"email\":\"xavierportillaedo@gmail.com\"}]"
- "--label=io.artifacthub.package.license=Apache-2.0"
- "--label=org.opencontainers.image.description=The CLI to interact with your Voiceflow projects"
- "--label=org.opencontainers.image.created={{.Date}}"
- "--label=org.opencontainers.image.name={{.ProjectName}}"
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
- "--label=org.opencontainers.image.version={{.Version}}"
- "--label=org.opencontainers.image.source={{.GitURL}}"
- "--platform=linux/arm64"
goarch: arm64
docker_manifests:
- name_template: 'xavidop/voiceflow:{{ .Tag }}'
image_templates:
- 'xavidop/voiceflow:{{ .Tag }}-amd64'
- 'xavidop/voiceflow:{{ .Tag }}-arm64'
- name_template: 'ghcr.io/xavidop/voiceflow:{{ .Tag }}'
image_templates:
- 'ghcr.io/xavidop/voiceflow:{{ .Tag }}-amd64'
- 'ghcr.io/xavidop/voiceflow:{{ .Tag }}-arm64'
- name_template: 'xavidop/voiceflow:latest'
image_templates:
- 'xavidop/voiceflow:{{ .Tag }}-amd64'
- 'xavidop/voiceflow:{{ .Tag }}-arm64'
- name_template: 'ghcr.io/xavidop/voiceflow:latest'
image_templates:
- 'ghcr.io/xavidop/voiceflow:{{ .Tag }}-amd64'
- 'ghcr.io/xavidop/voiceflow:{{ .Tag }}-arm64'
docker_signs:
- cmd: cosign
artifacts: manifests
output: true
args:
- "sign"
- "${artifact}@${digest}"
- --yes
sboms:
- artifacts: archive
milestones:
- close: true
scoops:
- repository:
owner: xavidop
name: scoop-bucket
token: "{{ .Env.GITHUB_TOKEN }}"
name: voiceflow
homepage: https://voiceflow.xavidop.me
description: The CLI for your Voiceflow projects
license: Apache-2.0
chocolateys:
- name: voiceflow
authors: Xavier Portilla Edo
title: Voiceflow CLI
project_url: https://voiceflow.xavidop.me
license_url: https://github.com/xavidop/voiceflow-cli/blob/main/LICENSE.md
project_source_url: https://github.com/xavidop/voiceflow-cli
docs_url: https://github.com/xavidop/voiceflow-cli/blob/main/README.md
bug_tracker_url: https://github.com/xavidop/voiceflow-cli/issues
tags: "voiceflow cli"
description: The CLI for your Voiceflow projects
icon_url: https://voiceflow.xavidop.me/images/logo.png
api_key: '{{ .Env.CHOCOLATEY_API_KEY }}'
brews:
- repository:
owner: xavidop
name: homebrew-tap
directory: Formula
name: voiceflow
homepage: 'https://voiceflow.xavidop.me'
description: 'The CLI for your Voiceflow projects'
goarm: "7"
test: |
system "#{bin}/voiceflow version"
commit_author:
name: xavidop
email: xavi_tb@hotmail.com
install: |-
bin.install "voiceflow"
bash_completion.install "completions/voiceflow.bash" => "voiceflow"
zsh_completion.install "completions/voiceflow.zsh" => "_voiceflow"
fish_completion.install "completions/voiceflow.fish"
man1.install "manpages/voiceflow.1.gz"
winget:
- name: voiceflow
publisher: xavidop
license: Apache-2.0
homepage: https://voiceflow.xavidop.me
short_description: 'The CLI for your Voiceflow projects'
repository:
owner: xavidop
name: winget-pkgs
branch: "voiceflow-{{.Version}}"
pull_request:
enabled: true
draft: true
base:
owner: microsoft
name: winget-pkgs
branch: main
publishers:
- name: fury.io
ids:
- packages
env:
- 'FURY_TOKEN={{ .Env.FURY_TOKEN }}'
cmd: ./scripts/fury-upload.sh {{ .ArtifactName }}
nix:
- name: voiceflow
repository:
owner: xavidop
name: nur
homepage: https://voiceflow.xavidop.me
description: 'The CLI for your Voiceflow projects'
path: pkgs/voiceflow/default.nix
license: asl20
install: |-
mkdir -p $out/bin
cp -vr ./voiceflow $out/bin/voiceflow
installManPage ./manpages/voiceflow.1.gz
installShellCompletion ./completions/*