We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ec3e7a commit 0770acdCopy full SHA for 0770acd
.github/workflows/stage-release.yml
@@ -57,3 +57,9 @@ jobs:
57
generate_release_notes: true
58
prerelease: false
59
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
@@ -8,6 +8,12 @@ on:
8
required: true
9
type: string
10
11
+ workflow_call:
12
+ inputs:
13
+ tag:
14
+ required: true
15
+ type: string
16
17
env:
18
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19
0 commit comments