-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
230 lines (208 loc) · 6.62 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
# Copyright (c) 2022 - 2023 Purple Clay
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# in the Software without restriction, including without limitation the rights
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
before:
hooks:
- ./scripts/completions.sh
- ./scripts/manpages.sh
builds:
- id: dns53
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
- "386"
- arm
- arm64
goarm:
- "7"
ignore:
- goos: darwin
goarch: "386"
archives:
- id: dns53-archive
name_template: >-
{{ .ProjectName }}_
{{- .Version }}_
{{- .Os }}-
{{- if eq .Arch "amd64" }}x86_64
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
builds:
- dns53
rlcp: true
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: "^.*feat\\(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
brews:
- name: dns53
tap:
owner: purpleclay
name: homebrew-tap
folder: Formula
homepage: "https://github.com/purpleclay/dns53"
description: "Dynamic DNS within Amazon Route53. Expose your EC2 quickly, easily and privately"
license: MIT
install: |
bin.install "dns53"
bash_output = Utils.safe_popen_read(bin/"dns53", "completion", "bash")
(bash_completion/"dns53").write bash_output
zsh_output = Utils.safe_popen_read(bin/"dns53", "completion", "zsh")
(zsh_completion/"_dns53").write zsh_output
fish_output = Utils.safe_popen_read(bin/"dns53", "completion", "fish")
(fish_completion/"dns53.fish").write fish_output
man1.install "manpages/dns53.1.gz"
test: |
installed_version = shell_output("#{bin}/dns53 version --short 2>&1")
assert_match "v#{version}", installed_version
scoop:
bucket:
owner: purpleclay
name: scoop-bucket
homepage: "https://github.com/purpleclay/dns53"
description: "Dynamic DNS within Amazon Route53. Expose your EC2 quickly, easily and privately"
license: MIT
nfpms:
- file_name_template: "{{ .ConventionalFileName }}"
id: packages
homepage: "https://github.com/purpleclay/dns53"
description: "Dynamic DNS within Amazon Route53. Expose your EC2 quickly, easily and privately"
maintainer: Purple Clay <[email protected]>
license: MIT
vendor: Purple Clay
bindir: /usr/bin
section: utils
contents:
- src: ./completions/dns53.bash
dst: /usr/share/bash-completion/completions/dns53
file_info:
mode: 0644
- src: ./completions/dns53.fish
dst: /usr/share/fish/completions/dns53.fish
file_info:
mode: 0644
- src: ./completions/dns53.zsh
dst: /usr/share/zsh/vendor-completions/_dns53
file_info:
mode: 0644
- src: ./LICENSE
dst: /usr/share/doc/dns53/copyright
file_info:
mode: 0644
- src: ./manpages/dns53.1.gz
dst: /usr/share/man/man1/dns53.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 }}
aurs:
- homepage: "https://github.com/purpleclay/dns53"
description: "Dynamic DNS within Amazon Route53. Expose your EC2 quickly, easily and privately"
maintainers:
- "Purple Clay <purple clay at gmail dot com>"
license: MIT
private_key: "{{ .Env.AUR_KEY }}"
git_url: "ssh://[email protected]/dns53-bin.git"
package: |-
# bin
install -Dm755 "./dns53" "${pkgdir}/usr/bin/dns53"
# license
install -Dm644 "./LICENSE" "${pkgdir}/usr/share/licenses/dns53/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/dns53.bash" "${pkgdir}/usr/share/bash-completion/completions/dns53"
install -Dm644 "./completions/dns53.zsh" "${pkgdir}/usr/share/zsh/site-functions/_dns53"
install -Dm644 "./completions/dns53.fish" "${pkgdir}/usr/share/fish/vendor_completions.d/dns53.fish"
# manpages
install -Dm644 "./manpages/dns53.1.gz" "${pkgdir}/usr/share/man/man1/dns53.1.gz"
release:
footer: |
**Full Changelog**: https://github.com/purpleclay/dns53/compare/{{ .PreviousTag }}...{{ .Tag }}
## What to do next?
- Read the [documentation](https://purpleclay.github.io/dns53/)
- Follow me on [Twitter](https://twitter.com/purpleclaydev)
- Follow me on [Fosstodon](https://fosstodon.org/@purpleclaydev)