Skip to content

Commit

Permalink
Try to update a major only tag
Browse files Browse the repository at this point in the history
In theory, should address #51.
  • Loading branch information
Aaron Batilo committed Aug 30, 2022
1 parent 9b38e00 commit 7f129ac
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -35,3 +35,12 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx semantic-release
- name: Update major tag
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git tag -d v2
git push --delete origin v2
git push origin :refs/tags/v2
git tag v2
git push --tags

0 comments on commit 7f129ac

Please sign in to comment.