-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.goreleaser.yml
More file actions
191 lines (172 loc) · 5.08 KB
/
.goreleaser.yml
File metadata and controls
191 lines (172 loc) · 5.08 KB
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
project_name: glab
version: 2
release:
prerelease: auto
extra_files:
- glob: "./bin/*.exe"
before:
hooks:
- go mod tidy
- go mod vendor
- make manpage
builds:
- <<: &build_defaults
main: ./cmd/glab
binary: bin/glab
env:
- CGO_ENABLED=0
ldflags:
- -s -w -X main.version=v{{.Version}} -X main.commit={{.ShortCommit}} -X "main.goversion={{.Env.GO_VERSION}}"
id: macos
goos: [darwin]
goarch: [amd64, arm64]
hooks:
post:
- cmd: './scripts/sign-binary.sh macos "{{ .Path }}"'
output: true
- <<: *build_defaults
id: linux
goos: [linux]
goarch: ["386", arm, amd64, arm64, ppc64le, s390x]
- <<: *build_defaults
id: windows
goos: [windows]
goarch: ["386", amd64]
hooks:
post:
- cmd: './scripts/sign-binary.sh windows "{{ .Path }}"'
output: true
- <<: *build_defaults
id: freebsd
goos: [freebsd]
goarch: ["386", amd64, arm]
gitlab_urls:
use_job_token: true
use_package_registry: true
dockers:
- image_templates:
- "registry.gitlab.com/gitlab-org/cli:{{ .Tag }}-amd64"
- "gitlab/glab:{{ .Tag }}-amd64"
dockerfile: Dockerfile
use: buildx
build_flag_templates:
- "--pull"
- "--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"
- image_templates:
- "registry.gitlab.com/gitlab-org/cli:{{ .Tag }}-arm64"
- "gitlab/glab:{{ .Tag }}-arm64"
dockerfile: Dockerfile
use: buildx
build_flag_templates:
- "--pull"
- "--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
docker_manifests:
- name_template: "registry.gitlab.com/gitlab-org/cli:{{ .Tag }}"
image_templates:
- "registry.gitlab.com/gitlab-org/cli:{{ .Tag }}-amd64"
- "registry.gitlab.com/gitlab-org/cli:{{ .Tag }}-arm64"
- name_template: "registry.gitlab.com/gitlab-org/cli:latest"
image_templates:
- "registry.gitlab.com/gitlab-org/cli:{{ .Tag }}-amd64"
- "registry.gitlab.com/gitlab-org/cli:{{ .Tag }}-arm64"
- name_template: "gitlab/glab:{{ .Tag }}"
image_templates:
- "gitlab/glab:{{ .Tag }}-amd64"
- "gitlab/glab:{{ .Tag }}-arm64"
- name_template: "gitlab/glab:latest"
image_templates:
- "gitlab/glab:{{ .Tag }}-amd64"
- "gitlab/glab:{{ .Tag }}-arm64"
archives:
- id: nix
ids: [macos, linux, freebsd]
wrap_in_directory: false
- id: windows
ids: [windows]
formats: zip
source:
enabled: true
name_template: "{{ .ProjectName }}_{{ .Version }}_source"
format: tar.gz
files:
- vendor/*
nfpms:
- id: foo
package_name: glab
# Build IDs for the builds you want to create NFPM packages for.
# Defaults to all builds.
vendor: GitLab
homepage: https://gitlab.com/gitlab-org/cli
# using service-desk email https://docs.gitlab.com/user/project/service_desk/
maintainer: GitLab<contact-project+gitlab-org-cli-34675721-issue-@incoming.gitlab.com>
description: An open source GitLab CLI tool
license: MIT
formats:
- apk
- deb
- rpm
dependencies:
- git
bindir: /usr
contents:
- src: "./share/man/man1/glab*.1"
dst: "/usr/share/man/man1"
checksum:
name_template: "checksums.txt"
extra_files:
- glob: ./bin/*installer.exe
snapshot:
version_template: "{{ .Tag }}"
changelog:
# https://goreleaser.com/customization/changelog/
use: gitlab
sort: asc
abbrev: 8
filters:
exclude:
- "^Merge branch"
- "^Update README.md"
groups:
- title: ✨ Features
regexp: '^.*?feat(\([^)]+\))??!?:.+$'
order: 0
- title: 🐛 Bug Fixes
regexp: '^.*?fix(\([^)]+\))??!?:.+$'
order: 1
- title: 📝 Documentation
regexp: '^.*?docs(\([^)]+\))??!?:.+$'
order: 2
- title: 📦 Dependencies
regexp: '^.*?chore\((deps|dependencies)\)[^:]*:.+$'
order: 3
- title: 🔧 Maintenance
regexp: '^.*?(chore|ci|refactor)(\([^)]+\))??!?:.+$'
order: 4
- title: 🔀 Others
order: 999
announce:
slack:
enabled: true
# Set SLACK_WEBHOOK environment variable in your CI/CD settings
# Format: https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXXXXXX
channel: '{{ .Env.SLACK_CHANNEL }}'
username: 'glab Release Bot'
icon_emoji: ':rocket:'
message_template: |
:rocket: *glab {{ .Tag }}* has been released!
{{ if .Prerelease }}
:warning: _This is a pre-release version_
{{ end }}
{{ .ReleaseNotes }}
<{{ .ReleaseURL }}|View Release on GitLab>