-
Notifications
You must be signed in to change notification settings - Fork 283
375 lines (372 loc) · 13.5 KB
/
release.yaml
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
name: Release
on:
workflow_dispatch:
inputs:
version:
type: string
description: The version you intend to release without leading 'v' (eg x.y.z and not vx.y.z)
pull_request:
types: [closed]
push:
branches:
- "release/**"
- "next/**"
tags:
- v*
release:
types: [created]
env:
VERSION: ${{ github.event.inputs.version }}
APP_ID: 251311
jobs:
prepare:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.version != '' }}
steps:
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a
with:
app_id: ${{env.APP_ID}}
private_key: ${{ secrets.TOKEN_EXCHANGE_GH_APP_PRIVATE_KEY }}
permissions: >-
{"contents": "write", "pull_requests": "write"}
- name: Checkout repository code
uses: actions/checkout@v4
with:
token: ${{ steps.generate_token.outputs.token }}
- uses: actions/setup-go@v4
with:
go-version: "1.21.x"
- name: Install Buf
run: make installbuf
- name: Update Buf Version
run: make updateversion
- name: Create PR
id: cpr
uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38
with:
add-paths: .
commit-message: "Update version to v${{env.VERSION}}"
branch: release/v${{env.VERSION}}
delete-branch: true
title: "Release v${{env.VERSION}}"
body: |
Release prepared for ${{env.VERSION}}
Reminder: Update the changelog
token: ${{ steps.generate_token.outputs.token }}
- name: Slack Notification
run: |
jq --null-input '{ text: "BufCLI Release v${{env.VERSION}} has started: ${{ steps.cpr.outputs.pull-request-url }}" }' \
| curl -sSL -X POST -H 'Content-Type: application/json' -d @- '${{ secrets.SLACK_RELEASE_NOTIFICATION_WEBHOOK }}'
verify:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' && startsWith(github.ref_name, 'release') }}
steps:
- name: Checkout repository code
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0
- name: Check changelog is modified
run: |
files=`(git fetch origin main:main) && (git diff --name-only main)`
for file in $files; do
if [ "$file" = "CHANGELOG.md" ]; then
exit 0
fi
done
echo ERROR: CHANGELOG has not been updated
exit 1
tag:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.merged == true && startsWith(github.event.pull_request.head.ref, 'release') }}
steps:
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a
with:
app_id: ${{env.APP_ID}}
private_key: ${{ secrets.TOKEN_EXCHANGE_GH_APP_PRIVATE_KEY }}
repositories: >-
[ "${{ github.repository }}" ]
permissions: >-
{"contents": "write"}
- name: Set VERSION variable from tag
run: |
VERSION=${{github.head_ref}}
echo "VERSION=${VERSION##*/}" >> $GITHUB_ENV
- name: Checkout repository code
uses: actions/checkout@v4
with:
token: ${{ steps.generate_token.outputs.token }}
fetch-depth: 0
- name: Tag Release
run: |
git config --global user.password ${{ steps.generate_token.outputs.token }}
git tag -d ${{env.VERSION}} 2> /dev/null || echo 'local ref does not exist'
git push origin :${{env.VERSION}} 2> /dev/null || echo 'remote ref does not exist'
git tag ${{env.VERSION}}
git push origin ${{env.VERSION}}
perform:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' && startsWith(github.ref_name, 'v') && github.ref_type == 'tag'}}
steps:
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a
with:
app_id: ${{env.APP_ID}}
private_key: ${{ secrets.TOKEN_EXCHANGE_GH_APP_PRIVATE_KEY }}
repositories: >-
[ "${{ github.repository }}" ]
permissions: >-
{"contents": "write", "pull_requests": "write"}
- name: Checkout repository code
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0
- name: Set VERSION variable from tag
run: |
echo "VERSION=${{github.ref_name}}" >> $GITHUB_ENV
- uses: actions/setup-go@v4
with:
go-version: "1.21.x"
- name: Create assets
env:
RELEASE_MINISIGN_PRIVATE_KEY: ${{secrets.RELEASE_MINISIGN_PRIVATE_KEY}}
RELEASE_MINISIGN_PRIVATE_KEY_PASSWORD: ${{secrets.RELEASE_MINISIGN_PRIVATE_KEY_PASSWORD}}
run: make bufrelease
- name: unset keys
run: |
unset RELEASE_MINISIGN_PRIVATE_KEY
unset RELEASE_MINISIGN_PRIVATE_KEY_PASSWORD
- name: Fetch Changelog
run: .github/actions/changelog-action/entrypoint.sh > ${{env.VERSION}}-CHANGELOG.md
- name: Release
id: ghr
uses: softprops/action-gh-release@v1
with:
token: ${{ steps.generate_token.outputs.token }}
body_path: ${{env.VERSION}}-CHANGELOG.md
files: |
${{github.workspace}}/.build/release/buf/assets/*
- name: Slack Notification
run: |
jq --null-input '{ text: "BufCLI Release ${{env.VERSION}} is complete: ${{ steps.ghr.outputs.url }}" }' \
| curl -sSL -X POST -H 'Content-Type: application/json' -d @- '${{ secrets.SLACK_RELEASE_NOTIFICATION_WEBHOOK }}'
post-release:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'release' }}
outputs:
version: ${{ steps.output_version.outputs.version }}
steps:
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a
with:
app_id: ${{env.APP_ID}}
private_key: ${{ secrets.TOKEN_EXCHANGE_GH_APP_PRIVATE_KEY }}
repositories: >-
[ "${{ github.repository }}" ]
permissions: >-
{"contents": "write", "pull_requests": "write"}
- name: Checkout repository code
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0
- name: Set NEXT VERSION variable from tag
run: |
NEXT_VERSION=$(echo ${{github.ref_name}} | awk -F. -v OFS=. '{$NF += 1 ; print}')
echo "NEXT_VERSION=${NEXT_VERSION:1}-dev" >> $GITHUB_ENV
- name: update version
run: make updateversion VERSION=${{env.NEXT_VERSION}}
- name: update home brew badge
run: make updatehomebrewbadge VERSION=${{github.ref_name}}
- name: create PR
uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38
with:
add-paths: .
commit-message: "Back to development"
branch: next/${{env.NEXT_VERSION}}
delete-branch: true
base: main
title: "Return to development"
body: Release complete for ${{github.ref_name}}
token: ${{ steps.generate_token.outputs.token }}
- name: Output Version
id: output_version
uses: actions/github-script@v6
with:
script:
core.setOutput('version', "${{github.ref_name}}".replace("v", ""));
trigger-maven-update:
runs-on: ubuntu-latest
needs: post-release
steps:
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a
with:
app_id: ${{secrets.BUF_MAVEN_PUBLISH_APP_ID}}
private_key: ${{ secrets.BUF_MAVEN_PUBLISH_APP_PRIVATE_KEY }}
repositories: >-
[ "bufbuild/buf-maven-publish" ]
permissions: >-
{"actions": "write"}
- name: trigger maven update
uses: actions/github-script@v6
with:
github-token: ${{steps.generate_token.outputs.token}}
script: |
github.rest.actions.createWorkflowDispatch({
owner: "bufbuild",
repo: "buf-maven-publish",
workflow_id: "update-buf-version.yaml",
ref: "main",
inputs: {
version: "${{needs.post-release.outputs.version}}"
}
})
trigger-npm-publish:
runs-on: ubuntu-latest
needs: post-release
steps:
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a
with:
app_id: ${{secrets.BUF_NPM_PUBLISH_RELEASE_APP_ID}}
private_key: ${{ secrets.BUF_NPM_PUBLISH_RELEASE_APP_PRIVATE_KEY }}
repositories: >-
[ "bufbuild/buf-npm-publish" ]
permissions: >-
{"actions": "write"}
- name: trigger npm publish
uses: actions/github-script@v6
with:
github-token: ${{steps.generate_token.outputs.token}}
script: |
github.rest.actions.createWorkflowDispatch({
owner: "bufbuild",
repo: "buf-npm-publish",
workflow_id: "npm-publish.yaml",
ref: "main",
inputs: {
version: "${{needs.post-release.outputs.version}}"
}
})
trigger-homebrew-buf-release:
runs-on: ubuntu-latest
needs: post-release
steps:
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a
with:
app_id: ${{secrets.HOMEBREW_RELEASE_APP_ID}}
private_key: ${{ secrets.HOMEBREW_RELEASE_APP_PRIVATE_KEY }}
repositories: >-
[ "bufbuild/homebrew-buf" ]
permissions: >-
{"actions": "write"}
- name: trigger homebrew-buf release
uses: actions/github-script@v6
with:
github-token: ${{steps.generate_token.outputs.token}}
script: |
github.rest.actions.createWorkflowDispatch({
owner: "bufbuild",
repo: "homebrew-buf",
workflow_id: "release.yaml",
ref: "main",
inputs: {
version: "${{needs.post-release.outputs.version}}"
}
})
trigger-vim-buf-release:
runs-on: ubuntu-latest
needs: post-release
steps:
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a
with:
app_id: ${{secrets.VIM_BUF_RELEASE_APP_ID}}
private_key: ${{ secrets.VIM_BUF_RELEASE_APP_PRIVATE_KEY }}
repositories: >-
[ "bufbuild/vim-buf" ]
permissions: >-
{"actions": "write"}
- name: trigger vim-buf release
uses: actions/github-script@v6
with:
github-token: ${{steps.generate_token.outputs.token}}
script: |
github.rest.actions.createWorkflowDispatch({
owner: "bufbuild",
repo: "vim-buf",
workflow_id: "release.yaml",
ref: "main",
inputs: {
version: "${{needs.post-release.outputs.version}}"
}
})
trigger-buf-build-release:
runs-on: ubuntu-latest
needs: post-release
steps:
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a
with:
app_id: ${{secrets.BUF_BUILD_RELEASE_APP_ID}}
private_key: ${{ secrets.BUF_BUILD_RELEASE_APP_PRIVATE_KEY }}
repositories: >-
[ "bufbuild/buf.build" ]
permissions: >-
{"actions": "write"}
- name: trigger buf.build release
uses: actions/github-script@v6
with:
github-token: ${{steps.generate_token.outputs.token}}
script: |
github.rest.actions.createWorkflowDispatch({
owner: "bufbuild",
repo: "buf.build",
workflow_id: "release.yaml",
ref: "main",
inputs: {
version: "${{needs.post-release.outputs.version}}"
}
})
trigger-buf-setup-action-release:
runs-on: ubuntu-latest
needs: post-release
steps:
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a
with:
app_id: ${{secrets.BUF_SETUP_ACTION_RELEASE_APP_ID}}
private_key: ${{ secrets.BUF_SETUP_ACTION_RELEASE_APP_PRIVATE_KEY }}
repositories: >-
[ "bufbuild/buf-setup-action" ]
permissions: >-
{"actions": "write"}
- name: trigger buf-setup-action release
uses: actions/github-script@v6
with:
github-token: ${{steps.generate_token.outputs.token}}
script: |
github.rest.actions.createWorkflowDispatch({
owner: "bufbuild",
repo: "buf-setup-action",
workflow_id: "release.yaml",
ref: "main",
inputs: {
version: "${{needs.post-release.outputs.version}}"
}
})