-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
173 lines (161 loc) · 4.72 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
---
version: 2
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/*
before:
hooks:
- go mod tidy
- go mod download
- ./scripts/completions.sh
- ./scripts/manpages.sh
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
disable: 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 <olivier@vernin.me>'
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}'