Skip to content

Commit 0770acd

Browse files
committed
[build] Release Staging workflow automatically runs Update Documentation workflow
1 parent 4ec3e7a commit 0770acd

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.github/workflows/stage-release.yml

+6
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,9 @@ jobs:
5757
generate_release_notes: true
5858
prerelease: false
5959
files: build/dist/*.*
60+
61+
update-documentation:
62+
needs: github-release
63+
uses: ./.github/workflows/update-documentation.yml
64+
with:
65+
tag: selenium-${{ needs.github-release.outputs.version }}

.github/workflows/update-documentation.yml

+6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ on:
88
required: true
99
type: string
1010

11+
workflow_call:
12+
inputs:
13+
tag:
14+
required: true
15+
type: string
16+
1117
env:
1218
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1319

0 commit comments

Comments
 (0)