Skip to content

Commit f08149c

Browse files
committed
[ci] Continuing if tag already exists
[skip ci]
1 parent dc05aef commit f08149c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/stage-release.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ jobs:
2828
uses: actions/checkout@v4
2929
with:
3030
fetch-depth: '0'
31-
ref: 'trunk'
3231
- name: Extract version from branch name
3332
if: github.event.pull_request.merged == true
3433
run: |
@@ -45,8 +44,8 @@ jobs:
4544
git config --local user.name "Selenium CI Bot"
4645
- name: Tag Release
4746
run: |
48-
git tag selenium-${{ env.VERSION }}
49-
git push origin selenium-${{ env.VERSION }}
47+
git tag selenium-${{ env.VERSION }} || echo "Tag already exists"
48+
git push origin selenium-${{ env.VERSION }} || echo "Tag already exists remotely"
5049
- name: Setup Java
5150
uses: actions/setup-java@v3
5251
with:

0 commit comments

Comments
 (0)