Skip to content

Commit

Permalink
fix: revert workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
koozz committed Sep 22, 2022
1 parent 3bf1c56 commit 3850f4e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/auto-tag-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,10 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh extension install koozz/gh-semver
gh semver -tag
git push --tags
gh semver -action
- name: Tag
run: |
if [[ -z $(git tag -l ${{ steps.semver.outputs.version }}) ]]; then
git tag ${{ steps.semver.outputs.version }}
git push --tags
fi

0 comments on commit 3850f4e

Please sign in to comment.