forked from updatecli/updatecli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
215 lines (200 loc) · 6.38 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
---
archives:
- name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
replacements:
darwin: Darwin
linux: Linux
windows: Windows
amd64: x86_64
format_overrides:
- goos: windows
format: zip
files:
- README.adoc
- LICENSE
- completions/*
- manpages/*
aurs:
- homepage: https://www.updatecli.io
description: A declarative dependency management command line tool.
maintainers:
- 'Olivier Vernin <olivier at vernin dot me>'
- 'Jonathan Neidel <aur at jneidel dot com>'
license: 'Apache'
private_key: '{{ .Env.AUR_KEY }}'
git_url: 'ssh://[email protected]/updatecli-bin.git'
package: |-
# bin
install -Dm755 "./updatecli" "${pkgdir}/usr/bin/updatecli"
# license
install -Dm644 "./LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
# completions
install -Dm644 "./completions/updatecli.bash" "${pkgdir}/usr/share/bash-completion/completions/updatecli"
install -Dm644 "./completions/updatecli.zsh" "${pkgdir}/usr/share/zsh/site-functions/_updatecli"
install -Dm644 "./completions/updatecli.fish" "${pkgdir}/usr/share/fish/vendor_completions.d/updatecli.fish"
# man pages
install -Dm644 "./manpages/updatecli.1.gz" "${pkgdir}/usr/share/man/man1/updatecli.1.gz"
before:
hooks:
- go mod tidy
- go mod download
- ./scripts/completions.sh
- ./scripts/manpages.sh
brews:
- name: updatecli
folder: Formula
tap:
owner: updatecli
name: homebrew-updatecli
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
commit_msg_template: "Brew formula update for {{ .ProjectName }} version {{ .Tag }}"
homepage: "https://updatecli.io/"
description: 'Updatecli is a declarative dependency management command line tool.'
license: 'Apache-2.0'
test: |
system "#{bin}/updatecli version"
install: |-
bin.install "updatecli"
bash_completion.install "completions/updatecli.bash" => "updatecli"
zsh_completion.install "completions/updatecli.zsh" => "_updatecli"
fish_completion.install "completions/updatecli.fish"
man1.install "manpages/updatecli.1.gz"
builds:
- id: updatecli
main: ./main.go
binary: updatecli
ldflags:
- -w -s
- -X "github.com/updatecli/updatecli/pkg/core/version.BuildTime={{.Date}}"
- -X "github.com/updatecli/updatecli/pkg/core/version.GoVersion={{.Env.GOVERSION}}"
- -X "github.com/updatecli/updatecli/pkg/core/version.Version={{ .Version }}"
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
- arm
changelog:
## Delegate Changelog to release-drafter
skip: true
checksum:
name_template: 'checksums.txt'
dockers:
- image_templates:
- 'updatecli/updatecli:{{ .Tag }}-amd64'
- 'ghcr.io/updatecli/updatecli:{{ .Tag }}-amd64'
dockerfile: Dockerfile
use: buildx
build_flag_templates:
- "--pull"
- "--no-cache"
- "--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"
goos: linux
goarch: amd64
extra_files:
- Makefile
- image_templates:
- 'updatecli/updatecli:{{ .Tag }}-arm64'
- 'ghcr.io/updatecli/updatecli:{{ .Tag }}-arm64'
dockerfile: Dockerfile
use: buildx
build_flag_templates:
- "--pull"
- "--no-cache"
- "--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"
goos: linux
goarch: arm64
extra_files:
- Makefile
docker_signs:
- cmd: cosign
env:
- COSIGN_EXPERIMENTAL=1
artifacts: manifests
output: true
args:
- 'sign'
- '${artifact}@${digest}'
docker_manifests:
- name_template: 'updatecli/updatecli:{{ .Tag }}'
image_templates:
- 'updatecli/updatecli:{{ .Tag }}-amd64'
- 'updatecli/updatecli:{{ .Tag }}-arm64'
- name_template: 'ghcr.io/updatecli/updatecli:{{ .Tag }}'
image_templates:
- 'ghcr.io/updatecli/updatecli:{{ .Tag }}-amd64'
- 'ghcr.io/updatecli/updatecli:{{ .Tag }}-arm64'
- name_template: 'updatecli/updatecli:latest'
image_templates:
- 'updatecli/updatecli:{{ .Tag }}-amd64'
- 'updatecli/updatecli:{{ .Tag }}-arm64'
- name_template: 'ghcr.io/updatecli/updatecli:latest'
image_templates:
- 'ghcr.io/updatecli/updatecli:{{ .Tag }}-amd64'
- 'ghcr.io/updatecli/updatecli:{{ .Tag }}-arm64'
env:
- GO111MODULE=on
- CGO_ENABLED=0
nfpms:
- file_name_template: '{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
homepage: 'https://www.updatecli.io'
description: 'Updatecli is a declarative dependency management command line tool.'
maintainer: 'Olivier Vernin <[email protected]>'
license: 'Apache-2.0'
vendor: Updatecli
section: utils
formats:
- apk
- deb
- rpm
dependencies:
- ca-certificates
contents:
- src: ./completions/updatecli.bash
dst: /usr/share/bash-completion/completions/updatecli
file_info:
mode: 0644
- src: ./completions/updatecli.fish
dst: /usr/share/fish/vendor_completions.d/updatecli.fish
file_info:
mode: 0644
- src: ./completions/updatecli.zsh
dst: /usr/share/zsh/vendor-completions/_updatecli
file_info:
mode: 0644
- src: ./manpages/updatecli.1.gz
dst: /usr/share/man/man1/updatecli.1.gz
file_info:
mode: 0644
- src: ./LICENSE
dst: /usr/share/doc/updatecli/copyright
file_info:
mode: 0644
snapshot:
name_template: "{{ .Tag }}-next"
sboms:
- artifacts: archive
signs:
- cmd: cosign
env:
- COSIGN_EXPERIMENTAL=1
certificate: '${artifact}.pem'
output: true
artifacts: checksum
args:
- sign-blob
- '--output-certificate=${certificate}'
- '--output-signature=${signature}'
- '${artifact}'