We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc05aef commit f08149cCopy full SHA for f08149c
.github/workflows/stage-release.yml
@@ -28,7 +28,6 @@ jobs:
28
uses: actions/checkout@v4
29
with:
30
fetch-depth: '0'
31
- ref: 'trunk'
32
- name: Extract version from branch name
33
if: github.event.pull_request.merged == true
34
run: |
@@ -45,8 +44,8 @@ jobs:
45
44
git config --local user.name "Selenium CI Bot"
46
- name: Tag Release
47
48
- git tag selenium-${{ env.VERSION }}
49
- git push origin selenium-${{ env.VERSION }}
+ git tag selenium-${{ env.VERSION }} || echo "Tag already exists"
+ git push origin selenium-${{ env.VERSION }} || echo "Tag already exists remotely"
50
- name: Setup Java
51
uses: actions/setup-java@v3
52
0 commit comments