-
-
Notifications
You must be signed in to change notification settings - Fork 8.7k
320 lines (300 loc) · 11.1 KB
/
release.yml
File metadata and controls
320 lines (300 loc) · 11.1 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
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
name: Release Selenium
on:
pull_request:
types: [closed]
paths:
- 'java/version.bzl'
- 'rb/lib/selenium/webdriver/version.rb'
- 'py/selenium/__init__.py'
- 'dotnet/version.bzl'
- 'javascript/selenium-webdriver/package.json'
workflow_dispatch:
inputs:
tag:
description: 'Release tag (e.g., selenium-4.28.0 or selenium-4.28.1-ruby)'
required: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
permissions:
contents: write
packages: write
jobs:
extract-tag:
name: Extract Tag
runs-on: ubuntu-latest
if: >
github.event.repository.fork == false &&
((startsWith(github.event.pull_request.head.ref, 'release-preparation-') &&
github.event.pull_request.merged == true) ||
(github.event_name == 'workflow_dispatch' && github.event.inputs.tag != ''))
outputs:
tag: ${{ steps.extract.outputs.tag }}
steps:
- name: Extract tag from input or PR branch
id: extract
env:
EVENT_NAME: ${{ github.event_name }}
INPUT_TAG: ${{ inputs.tag }}
PR_HEAD_REF: ${{ github.event.pull_request.head.ref }}
run: |
if [ "$EVENT_NAME" == "workflow_dispatch" ]; then
TAG="$INPUT_TAG"
else
# Extract tag from branch name: release-preparation-selenium-4.28.1-ruby -> selenium-4.28.1-ruby
TAG="${PR_HEAD_REF#release-preparation-}"
fi
echo "tag=$TAG" >> "$GITHUB_OUTPUT"
parse-tag:
name: Parse Tag
needs: extract-tag
uses: ./.github/workflows/parse-release-tag.yml
with:
tag: ${{ needs.extract-tag.outputs.tag }}
get-approval:
name: Get Approval
needs: parse-tag
uses: ./.github/workflows/get-approval.yml
with:
title: Release approval required
message: "Approval is required to publish ${{ needs.parse-tag.outputs.tag }}."
secrets:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
create-language-tag:
name: Create Language Tag
needs: [parse-tag, get-approval]
if: needs.parse-tag.outputs.language != 'all'
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Create language-specific tag
env:
GH_TOKEN: ${{ secrets.SELENIUM_CI_TOKEN }}
TAG: ${{ needs.parse-tag.outputs.tag }}
SHA: ${{ github.event.pull_request.merge_commit_sha || github.sha }}
run: |
gh api -X POST /repos/${{ github.repository }}/git/refs \
-f ref="refs/tags/${TAG}" \
-f sha="${SHA}"
github-release-draft:
name: GitHub Release Draft
needs: [parse-tag, get-approval]
if: needs.parse-tag.outputs.language == 'all'
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Create draft GitHub release
uses: ncipollo/release-action@v1
with:
draft: true
allowUpdates: true
bodyFile: "scripts/github-actions/release_header.md"
generateReleaseNotes: true
name: "Selenium ${{ needs.parse-tag.outputs.version }}"
tag: "${{ needs.parse-tag.outputs.tag }}"
commit: ${{ github.event.pull_request.merge_commit_sha || github.sha }}
publish:
name: Build and Publish ${{ matrix.language }}
needs: [parse-tag, get-approval]
permissions:
contents: read
id-token: write
strategy:
fail-fast: false
matrix:
language: [java, ruby, dotnet, javascript]
uses: ./.github/workflows/bazel.yml
with:
name: Publish ${{ matrix.language }}
gpg-sign: ${{ matrix.language == 'java' }}
gem-trusted-publishing: ${{ matrix.language == 'ruby' }}
run: ${{ (needs.parse-tag.outputs.language == 'all' || needs.parse-tag.outputs.language == matrix.language) && format('./go {0}:release', matrix.language) || 'echo skipping' }}
artifact-name: ${{ (needs.parse-tag.outputs.language == 'all' || needs.parse-tag.outputs.language == matrix.language) && format('release-packages-{0}', matrix.language) || '' }}
artifact-path: ${{ (matrix.language == 'java' || matrix.language == 'dotnet') && 'build/dist/*.*' || '' }}
secrets: inherit
build-python:
name: Build Python
needs: [parse-tag, get-approval]
if: needs.parse-tag.outputs.language == 'all' || needs.parse-tag.outputs.language == 'python'
uses: ./.github/workflows/bazel.yml
with:
name: Build Python
run: ./go py:build --config=release
artifact-name: pypi-distributions
artifact-path: |
bazel-bin/py/selenium-*.whl
bazel-bin/py/selenium-*.tar.gz
secrets: inherit
publish-python:
name: Publish Python to PyPI
needs: [parse-tag, build-python]
if: needs.parse-tag.outputs.language == 'all' || needs.parse-tag.outputs.language == 'python'
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
actions: read
steps:
- name: Download Python distributions
uses: actions/download-artifact@v4
with:
name: pypi-distributions
path: dist/
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
github-release-publish:
name: GitHub Release Publish
needs: [parse-tag, publish, github-release-draft]
if: >-
always() && !failure() && !cancelled() &&
(needs.parse-tag.outputs.language == 'all' ||
needs.parse-tag.outputs.language == 'java' ||
needs.parse-tag.outputs.language == 'dotnet')
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repo
if: needs.parse-tag.outputs.language == 'all'
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Download all release packages
if: needs.parse-tag.outputs.language == 'all'
uses: actions/download-artifact@v4
with:
pattern: release-packages-*
merge-multiple: true
path: "build/dist/"
- name: Download release packages
if: needs.parse-tag.outputs.language != 'all'
uses: actions/download-artifact@v4
with:
name: release-packages-${{ needs.parse-tag.outputs.language }}
path: "build/dist/"
- name: Delete nightly release and tag
if: needs.parse-tag.outputs.language == 'all'
env:
GH_TOKEN: ${{ secrets.SELENIUM_CI_TOKEN }}
run: |
if gh release view nightly >/dev/null 2>&1; then
gh release delete nightly --yes
fi
if git ls-remote --tags origin refs/tags/nightly | grep -q nightly; then
gh api -X DELETE /repos/${{ github.repository }}/git/refs/tags/nightly
fi
- name: Upload to GitHub release
env:
GH_TOKEN: ${{ secrets.SELENIUM_CI_TOKEN }}
VERSION: ${{ needs.parse-tag.outputs.version }}
run: |
BASE_VERSION="${VERSION%.*}.0"
gh release upload "selenium-$BASE_VERSION" build/dist/*.* --clobber
gh release edit "selenium-$BASE_VERSION" --draft=false
docs:
name: Update ${{ matrix.language }} Documentation
needs: [parse-tag, publish, publish-python, github-release-publish, create-language-tag]
if: >-
always() && !cancelled() &&
needs.publish.result == 'success' &&
(needs.publish-python.result == 'success' || needs.publish-python.result == 'skipped') &&
needs.github-release-publish.result != 'failure' &&
needs.create-language-tag.result != 'failure'
permissions:
contents: write
strategy:
fail-fast: false
matrix:
language: [java, python, ruby, dotnet, javascript]
uses: ./.github/workflows/update-documentation.yml
with:
tag: ${{ needs.parse-tag.outputs.tag }}
language: ${{ matrix.language }}
skip: ${{ needs.parse-tag.outputs.language != 'all' && needs.parse-tag.outputs.language != matrix.language }}
secrets:
SELENIUM_CI_TOKEN: ${{ secrets.SELENIUM_CI_TOKEN }}
verify:
name: Verify Published Packages
needs: [parse-tag, docs]
uses: ./.github/workflows/bazel.yml
with:
name: Verify packages
run: ./go ${{ needs.parse-tag.outputs.language }}:verify
unrestrict-trunk:
name: Unrestrict Trunk Branch
needs: verify
uses: ./.github/workflows/restrict-trunk.yml
with:
restrict: false
secrets:
SELENIUM_CI_TOKEN: ${{ secrets.SELENIUM_CI_TOKEN }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
reset-version:
name: Generate Nightly Versions
needs: [parse-tag, docs]
uses: ./.github/workflows/bazel.yml
with:
name: Reset Versions
run: ./go ${{ needs.parse-tag.outputs.language }}:version nightly${{ needs.parse-tag.outputs.language == 'all' && ' && ./go rust:version nightly' || '' }}
artifact-name: version-reset
update-version:
name: Push Nightly Versions
needs: [parse-tag, reset-version, unrestrict-trunk]
permissions:
contents: write
actions: read
uses: ./.github/workflows/commit-changes.yml
with:
artifact-name: version-reset
commit-message: "[build] Reset versions to nightly after ${{ needs.parse-tag.outputs.tag }} release"
secrets:
SELENIUM_CI_TOKEN: ${{ secrets.SELENIUM_CI_TOKEN }}
nightly:
name: Publish Nightly Packages
needs: [parse-tag, update-version]
permissions:
contents: write
packages: write
uses: ./.github/workflows/nightly.yml
with:
language: ${{ needs.parse-tag.outputs.language }}
secrets: inherit
mirror:
name: Update Release Mirror
needs: [parse-tag, nightly]
if: needs.parse-tag.outputs.language == 'all'
uses: ./.github/workflows/mirror-selenium-releases.yml
secrets: inherit
on-release-failure:
name: On Release Failure
runs-on: ubuntu-latest
needs: [publish, publish-python, docs, create-language-tag, github-release-draft, github-release-publish, update-version, nightly, mirror, verify]
if: failure()
steps:
- uses: actions/checkout@v4
- name: Slack Notification
uses: rtCamp/action-slack-notify@v2
env:
SLACK_ICON_EMOJI: ":rotating_light:"
SLACK_COLOR: failure
SLACK_CHANNEL: selenium-tlc
SLACK_USERNAME: GitHub Workflows
SLACK_TITLE: Release failed
SLACK_MESSAGE: |
• Selenium Published: ${{ needs.publish.result }}
• Python Published: ${{ needs.publish-python.result }}
• Language Tag Created: ${{ needs.create-language-tag.result }}
• GitHub Release Draft: ${{ needs.github-release-draft.result }}
• Docs Updated: ${{ needs.docs.result }}
• GitHub Release Published: ${{ needs.github-release-publish.result }}
• Nightly Version Updated: ${{ needs.update-version.result }}
• Nightly Packages: ${{ needs.nightly.result }}
• Mirror Updated: ${{ needs.mirror.result }}
• Packages Verified: ${{ needs.verify.result }}
MSG_MINIMAL: actions url
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }}