-
-
Notifications
You must be signed in to change notification settings - Fork 157
/
.goreleaser.yml
316 lines (289 loc) · 9.35 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
# yaml-language-server: $schema=https://goreleaser.com/static/schema-pro.json
version: 2
env:
- GO111MODULE=on
before:
hooks:
- go mod tidy
- ./scripts/completions.sh
- ./scripts/manpages.sh
gomod:
proxy: true
builds:
- main: ./cmd/nfpm
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
- ppc64le
- s390x
mod_timestamp: "{{ .CommitTimestamp }}"
flags:
- -trimpath
ldflags:
- -s -w -X main.version={{ .Version }} -X main.commit={{ .Commit }} -X main.date={{ .CommitDate }} -X main.builtBy=goreleaser -X main.treeState={{ .IsGitDirty }}
dockers:
- image_templates:
- "goreleaser/nfpm:{{ .Tag }}-amd64"
- "ghcr.io/goreleaser/nfpm:{{ .Tag }}-amd64"
dockerfile: Dockerfile
use: buildx
build_flag_templates:
- "--pull"
- "--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:
- "goreleaser/nfpm:{{ .Tag }}-arm64v8"
- "ghcr.io/goreleaser/nfpm:{{ .Tag }}-arm64v8"
dockerfile: Dockerfile
use: buildx
build_flag_templates:
- "--pull"
- "--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/v8"
goarch: arm64
docker_manifests:
- name_template: "goreleaser/nfpm:{{ .Tag }}"
image_templates:
- "goreleaser/nfpm:{{ .Tag }}-amd64"
- "goreleaser/nfpm:{{ .Tag }}-arm64v8"
- name_template: "ghcr.io/goreleaser/nfpm:{{ .Tag }}"
image_templates:
- "ghcr.io/goreleaser/nfpm:{{ .Tag }}-amd64"
- "ghcr.io/goreleaser/nfpm:{{ .Tag }}-arm64v8"
- name_template: "goreleaser/nfpm:latest"
image_templates:
- "goreleaser/nfpm:{{ .Tag }}-amd64"
- "goreleaser/nfpm:{{ .Tag }}-arm64v8"
- name_template: "ghcr.io/goreleaser/nfpm:latest"
image_templates:
- "ghcr.io/goreleaser/nfpm:{{ .Tag }}-amd64"
- "ghcr.io/goreleaser/nfpm:{{ .Tag }}-arm64v8"
archives:
- name_template: >-
{{ .ProjectName }}_
{{- .Version }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
format_overrides:
- goos: windows
format: zip
files:
- README.md
- LICENSE.md
- completions/*
- manpages/*
brews:
- repository:
owner: goreleaser
name: homebrew-tap
directory: Formula
homepage: https://nfpm.goreleaser.com
description: nFPM is a simple, 0-dependencies, deb, rpm and apk packager.
license: MIT
test: |
system "#{bin}/nfpm -v"
install: |-
bin.install "nfpm"
bash_completion.install "completions/nfpm.bash" => "nfpm"
zsh_completion.install "completions/nfpm.zsh" => "_nfpm"
fish_completion.install "completions/nfpm.fish"
man1.install "manpages/nfpm.1.gz"
scoops:
- repository:
owner: goreleaser
name: scoop-bucket
homepage: https://nfpm.goreleaser.com
directory: bucket
description: nFPM is a simple, 0-dependencies, deb, rpm and apk packager.
license: MIT
nix:
- name: nfpm
repository:
owner: goreleaser
name: nur
homepage: https://nfpm.goreleaser.com
description: nFPM is a simple, 0-dependencies, deb, rpm and apk packager.
path: pkgs/nfpm/default.nix
license: mit
extra_install: |-
installManPage ./manpages/nfpm.1.gz
installShellCompletion ./completions/*
winget:
- name: nfpm
publisher: goreleaser
license: Copyright Becker Software LTDA
copyright: Becker Software LTDA
homepage: https://nfpm.goreleaser.com
short_description: nFPM is a simple, 0-dependencies, deb, rpm and apk packager.
repository:
owner: goreleaser
name: winget-pkgs
branch: "nfpm-{{.Version}}"
pull_request:
enabled: true
draft: false
check_boxes: true
base:
owner: microsoft
name: winget-pkgs
branch: master
nfpms:
- file_name_template: "{{ .ConventionalFileName }}"
homepage: https://nfpm.goreleaser.com
description: |-
Simple, 0-dependencies, deb, rpm and apk packager.
nFPM (not FPM) is configurable via YAML and does not need any
packaging software installed.
maintainer: Carlos Alexandro Becker <[email protected]>
license: MIT
vendor: GoReleaser
formats:
- apk
- deb
- rpm
bindir: /usr/bin
section: utils
contents:
- src: ./completions/nfpm.bash
dst: /usr/share/bash-completion/completions/nfpm
file_info:
mode: 0644
- src: ./completions/nfpm.fish
dst: /usr/share/fish/vendor_completions.d/nfpm.fish
file_info:
mode: 0644
- src: ./completions/nfpm.zsh
dst: /usr/share/zsh/vendor-completions/_nfpm
file_info:
mode: 0644
- src: ./manpages/nfpm.1.gz
dst: /usr/share/man/man1/nfpm.1.gz
file_info:
mode: 0644
- src: ./LICENSE.md
dst: /usr/share/doc/nfpm/copyright
file_info:
mode: 0644
- src: .lintian-overrides
dst: ./usr/share/lintian/overrides/nfpm
packager: deb
file_info:
mode: 0644
aurs:
- homepage: https://nfpm.goreleaser.com
description: nFPM is a simple, 0-dependencies, deb, rpm and apk packager.
maintainers:
- "Fernandez Ludovic <lfernandez dot dev at gmail dot com>"
- "Carlos Alexandro Becker <carlos at becker dot software>"
license: MIT
private_key: "{{ .Env.AUR_KEY }}"
git_url: "ssh://[email protected]/nfpm-bin.git"
package: |-
# bin
install -Dm755 "./nfpm" "${pkgdir}/usr/bin/nfpm"
# license
install -Dm644 "./LICENSE.md" "${pkgdir}/usr/share/licenses/nfpm/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/nfpm.bash" "${pkgdir}/usr/share/bash-completion/completions/nfpm"
install -Dm644 "./completions/nfpm.zsh" "${pkgdir}/usr/share/zsh/site-functions/_nfpm"
install -Dm644 "./completions/nfpm.fish" "${pkgdir}/usr/share/fish/vendor_completions.d/nfpm.fish"
# man pages
install -Dm644 "./manpages/nfpm.1.gz" "${pkgdir}/usr/share/man/man1/nfpm.1.gz"
furies:
- account: goreleaser
sboms:
- artifacts: archive
signs:
- cmd: cosign
certificate: "${artifact}.pem"
output: true
artifacts: checksum
args:
- sign-blob
- "--output-certificate=${certificate}"
- "--output-signature=${signature}"
- "${artifact}"
- --yes
docker_signs:
- cmd: cosign
artifacts: manifests
output: true
args:
- "sign"
- "${artifact}"
- --yes
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|chore)\(deps\)!?:.+$'
order: 300
- title: "New Features"
regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
order: 100
- title: "Security updates"
regexp: '^.*?sec(\([[:word:]]+\))??!?:.+$'
order: 150
- title: "Bug fixes"
regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$'
order: 200
- title: "Documentation updates"
regexp: ^.*?doc(\([[:word:]]+\))??!?:.+$
order: 400
- title: "Build process updates"
regexp: ^.*?(build|ci)(\([[:word:]]+\))??!?:.+$
order: 400
- title: Other work
order: 9999
checksum:
name_template: "checksums.txt"
release:
footer: |
**Full Changelog**: https://github.com/goreleaser/nfpm/compare/{{ .PreviousTag }}...{{ .Tag }}
## Helping out
This release is only possible thanks to **all** the support of **awesome people**!
Want to be one of them?
You can [sponsor](https://goreleaser.com/sponsors/) or [contribute with code](https://goreleaser.com/contributing).
## Where to go next?
* nFPM is a satellite project from GoReleaser. [Check it out](https://goreleaser.com)!
* Find examples and commented usage of all options in our [website](https://nfpm.goreleaser.com/).
* Reach out on [Discord](https://discord.gg/RGEBtg8vQ6) and [Twitter](https://twitter.com/goreleaser)!
<a href="https://goreleaser.com"><img src="https://raw.githubusercontent.com/goreleaser/artwork/master/opencollective-header.png" with="100%" alt="GoReleaser logo"></a>
milestones:
- close: true
announce:
twitter:
enabled: false
message_template: "nFPM {{ .Tag }} was just released! See what's new: https://github.com/goreleaser/nfpm/releases/tag/{{ .Tag }}"
discord:
enabled: true
message_template: "nFPM {{ .Tag }} is out! See what's new: https://github.com/goreleaser/nfpm/releases/tag/{{ .Tag }}"