-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yaml
234 lines (214 loc) · 6.5 KB
/
.goreleaser.yaml
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
version: 2
before:
hooks:
- ./scripts/completions.sh
- ./scripts/manpages.sh
builds:
- id: nsv
ldflags:
- -s -w
- -X main.version={{.Tag}}
- -X main.gitCommit={{.Commit}}
- -X main.gitBranch=main
- -X main.buildDate={{.Date}}
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm
- arm64
goarm:
- "7"
archives:
- id: nsv-archive
name_template: >-
{{ .ProjectName }}_
{{- .Version }}_
{{- .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
builds:
- nsv
format_overrides:
- goos: windows
format: zip
files:
- README.md
- LICENSE
- completions/*
- manpages/*
checksum:
name_template: "checksums.txt"
changelog:
sort: desc
use: github
filters:
exclude:
- "^test"
- "^chore"
- "^ci"
groups:
- title: "Dependency Updates"
regexp: "^.*fix\\(deps\\)*:+.*$"
order: 30
- title: "New Features"
regexp: "^.*feat[(\\w)]*:+.*$"
order: 10
- title: "Bug Fixes"
regexp: "^.*fix[(\\w)]*:+.*$"
order: 20
- title: "Documentation Updates"
regexp: "^.*docs[(\\w)]*:+.*$"
order: 40
- title: "Other Work"
order: 99
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}@${digest}"
- --yes
dockers:
- image_templates:
- "purpleclay/nsv:{{ .Tag }}-amd64"
- "ghcr.io/purpleclay/nsv:{{ .Tag }}-amd64"
dockerfile: Dockerfile
use: buildx
build_flag_templates:
- "--pull"
- "--label=org.opencontainers.image.description=A convention-based semantic versioning tool that leans on the power of conventional commits to make versioning your software a breeze!"
- "--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"
extra_files:
- scripts/entrypoint.sh
- image_templates:
- "purpleclay/nsv:{{ .Tag }}-arm64"
- "ghcr.io/purpleclay/nsv:{{ .Tag }}-arm64"
dockerfile: Dockerfile
use: buildx
build_flag_templates:
- "--pull"
- "--label=org.opencontainers.image.description=A convention-based semantic versioning tool that leans on the power of conventional commits to make versioning your software a breeze!"
- "--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
extra_files:
- scripts/entrypoint.sh
docker_manifests:
- name_template: "purpleclay/nsv:{{ .Tag }}"
image_templates:
- "purpleclay/nsv:{{ .Tag }}-amd64"
- "purpleclay/nsv:{{ .Tag }}-arm64"
- name_template: "ghcr.io/purpleclay/nsv:{{ .Tag }}"
image_templates:
- "ghcr.io/purpleclay/nsv:{{ .Tag }}-amd64"
- "ghcr.io/purpleclay/nsv:{{ .Tag }}-arm64"
- name_template: "purpleclay/nsv:latest"
image_templates:
- "purpleclay/nsv:{{ .Tag }}-amd64"
- "purpleclay/nsv:{{ .Tag }}-arm64"
- name_template: "ghcr.io/purpleclay/nsv:latest"
image_templates:
- "ghcr.io/purpleclay/nsv:{{ .Tag }}-amd64"
- "ghcr.io/purpleclay/nsv:{{ .Tag }}-arm64"
brews:
- name: nsv
repository:
owner: purpleclay
name: homebrew-tap
directory: Formula
homepage: "https://github.com/purpleclay/nsv"
description: "A convention-based semantic versioning tool that leans on the power of conventional commits to make versioning your software a breeze!"
license: MIT
install: |
bin.install "nsv"
bash_output = Utils.safe_popen_read(bin/"nsv", "completion", "bash")
(bash_completion/"nsv").write bash_output
zsh_output = Utils.safe_popen_read(bin/"nsv", "completion", "zsh")
(zsh_completion/"_nsv").write zsh_output
fish_output = Utils.safe_popen_read(bin/"nsv", "completion", "fish")
(fish_completion/"nsv.fish").write fish_output
man1.install "manpages/nsv.1.gz"
test: |
installed_version = shell_output("#{bin}/nsv version --short 2>&1")
assert_match "v#{version}", installed_version
nfpms:
- file_name_template: "{{ .ConventionalFileName }}"
id: packages
homepage: "https://github.com/purpleclay/nsv"
description: "A convention-based semantic versioning tool that leans on the power of conventional commits to make versioning your software a breeze!"
maintainer: Purple Clay <purpleclaygh@gmail.com>
license: MIT
vendor: Purple Clay
bindir: /usr/bin
section: utils
contents:
- src: ./completions/nsv.bash
dst: /usr/share/bash-completion/completions/nsv
file_info:
mode: 0644
- src: ./completions/nsv.fish
dst: /usr/share/fish/completions/nsv.fish
file_info:
mode: 0644
- src: ./completions/nsv.zsh
dst: /usr/share/zsh/vendor-completions/_nsv
file_info:
mode: 0644
- src: ./LICENSE
dst: /usr/share/doc/nsv/copyright
file_info:
mode: 0644
- src: ./manpages/nsv.1.gz
dst: /usr/share/man/man1/nsv.1.gz
file_info:
mode: 0644
formats:
- apk
- deb
- rpm
deb:
lintian_overrides:
- statically-linked-binary
- changelog-file-missing-in-native-package
publishers:
- name: fury.io
ids:
- packages
env:
- "FURY_TOKEN={{ .Env.FURY_TOKEN }}"
cmd: ./scripts/fury-upload.sh {{ .ArtifactName }}
release:
footer: |
**Full Changelog**: https://github.com/purpleclay/nsv/compare/{{ .PreviousTag }}...{{ .Tag }}
## What to do next?
- Follow me on [Twitter](https://twitter.com/purpleclaydev)
- Follow me on [Fosstodon](https://fosstodon.org/@purpleclaydev)