-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
213 lines (199 loc) · 6.53 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
---
archives:
- name_template: >-
{{ .ProjectName }}_
{{- 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
- completions/*
- manpages/*
#aurs:
# - homepage: https://www.updatecli.io
# description: Repost changelogs to your static site generator git repository
# 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]/releasepost-bin.git'
# package: |-
# # bin
# install -Dm755 "./releasepost" "${pkgdir}/usr/bin/releasepost"
# # license
# install -Dm644 "./LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
# # completions
# install -Dm644 "./completions/releasepost.bash" "${pkgdir}/usr/share/bash-completion/completions/releasepost"
# install -Dm644 "./completions/releasepost.zsh" "${pkgdir}/usr/share/zsh/site-functions/_releasepost"
# install -Dm644 "./completions/releasepost.fish" "${pkgdir}/usr/share/fish/vendor_completions.d/releasepost.fish"
# # man pages
# install -Dm644 "./manpages/releasepost.1.gz" "${pkgdir}/usr/share/man/man1/releasepost.1.gz"
before:
hooks:
- go mod tidy
- go mod download
- ./scripts/completions.sh
- ./scripts/manpages.sh
#brews:
# - name: releasepost
# folder: Formula
# repository:
# owner: updatecli
# name: homebrew-releasepost
# 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}/releasepost version"
# install: |-
# bin.install "releasepost"
# bash_completion.install "completions/releasepost.bash" => "releasepost"
# zsh_completion.install "completions/releasepost.zsh" => "_releasepost"
# fish_completion.install "completions/releasepost.fish"
# man1.install "manpages/releasepost.1.gz"
builds:
- id: releasepost
main: ./main.go
binary: releasepost
ldflags:
- -w -s
- -X "github.com/updatecli/releasepost/internal/core/version.BuildTime={{.Date}}"
- -X "github.com/updatecli/releasepost/internal/core/version.GoVersion={{.Env.GOVERSION}}"
- -X "github.com/updatecli/releasepost/internal/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/releasepost:{{ .Tag }}-amd64'
- 'ghcr.io/updatecli/releasepost:{{ .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/releasepost:{{ .Tag }}-arm64'
- 'ghcr.io/updatecli/releasepost:{{ .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
artifacts: manifests
output: true
args:
- 'sign'
- '--yes'
- '${artifact}@${digest}'
docker_manifests:
- name_template: 'updatecli/releasepost:{{ .Tag }}'
image_templates:
- 'updatecli/releasepost:{{ .Tag }}-amd64'
- 'updatecli/releasepost:{{ .Tag }}-arm64'
- name_template: 'ghcr.io/updatecli/releasepost:{{ .Tag }}'
image_templates:
- 'ghcr.io/updatecli/releasepost:{{ .Tag }}-amd64'
- 'ghcr.io/updatecli/releasepost:{{ .Tag }}-arm64'
- name_template: 'updatecli/releasepost:latest'
image_templates:
- 'updatecli/releasepost:{{ .Tag }}-amd64'
- 'updatecli/releasepost:{{ .Tag }}-arm64'
- name_template: 'ghcr.io/updatecli/releasepost:latest'
image_templates:
- 'ghcr.io/updatecli/releasepost:{{ .Tag }}-amd64'
- 'ghcr.io/updatecli/releasepost:{{ .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: 'Repost changelogs to your static site generator git repository'
maintainer: 'Olivier Vernin <[email protected]>'
license: 'Apache-2.0'
vendor: Updatecli
section: utils
formats:
- apk
- deb
- rpm
dependencies:
- ca-certificates
contents:
- src: ./completions/releasepost.bash
dst: /usr/share/bash-completion/completions/releasepost
file_info:
mode: 0644
- src: ./completions/releasepost.fish
dst: /usr/share/fish/vendor_completions.d/releasepost.fish
file_info:
mode: 0644
- src: ./completions/releasepost.zsh
dst: /usr/share/zsh/vendor-completions/_releastpost
file_info:
mode: 0644
- src: ./manpages/releasepost.1.gz
dst: /usr/share/man/man1/releasepost.1.gz
file_info:
mode: 0644
- src: ./LICENSE
dst: /usr/share/doc/releasepost/copyright
file_info:
mode: 0644
snapshot:
name_template: "{{ .Tag }}-next"
sboms:
- artifacts: archive
signs:
- cmd: cosign
certificate: '${artifact}.pem'
signature: "${artifact}.sig"
output: true
artifacts: checksum
args:
- sign-blob
- '--yes'
- '--output-certificate=${certificate}'
- '--output-signature=${signature}'
- '${artifact}'