Skip to content

Commit

Permalink
WIP - change how getting tags
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Jun 18, 2024
1 parent 8a89cec commit 538be40
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/stage-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ jobs:
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-tags: true
- name: Extract version from branch name
id: extract_version
run: |
Expand Down Expand Up @@ -47,7 +45,8 @@ jobs:
git push origin selenium-${{ env.VERSION }}
- name: Remove Nightly Tag
run: |
git tag -d nightly
git fetch --tags
git tag -d nightly || echo "Nightly tag not found"
git push origin :refs/tags/nightly
- name: "Release"
uses: softprops/action-gh-release@v2
Expand Down

0 comments on commit 538be40

Please sign in to comment.