File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -19,11 +19,13 @@ jobs:
19
19
(github.event.pull_request.merged == true &&
20
20
github.repository_owner == 'seleniumhq' &&
21
21
startsWith(github.event.pull_request.head.ref, 'release-preparation-')) ||
22
- (github.event_name == 'workflow_dispatch' &&
23
- github.event.inputs.version != '' &&
22
+ (github.event_name == 'workflow_dispatch' &&
23
+ github.event.inputs.version != '' &&
24
24
github.repository_owner == 'seleniumhq')
25
25
runs-on : ubuntu-latest
26
26
permissions : write-all
27
+ outputs :
28
+ version : ${{ env.VERSION }}
27
29
steps :
28
30
- name : Checkout repo
29
31
uses : actions/checkout@v4
41
43
run : |
42
44
git config --local user.email "[email protected] "
43
45
git config --local user.name "Selenium CI Bot"
44
- # - name: Tag Release
45
- # run: |
46
- # git tag selenium-${{ env.VERSION }} || echo "Tag already exists"
47
- # git push origin selenium-${{ env.VERSION }} || echo "Tag already exists remotely"
48
46
- name : Setup Java
49
47
uses : actions/setup-java@v3
50
48
with :
71
69
needs : github-release
72
70
uses : ./.github/workflows/update-documentation.yml
73
71
with :
74
- tag : selenium-${{ needs.github-release.outputs.version }}
72
+ version : ${{ needs.github-release.outputs.version }}
73
+ sha : ${{ github.sha }}
You can’t perform that action at this time.
0 commit comments