Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ jobs:
NEW_VERSION=$(npm version ${{ steps.version.outputs.bump }} --no-git-tag-version)
git add package.json package-lock.json
git commit -m "chore: bump version to $NEW_VERSION [skip ci]"
git tag -d $NEW_VERSION 2>/dev/null || true
git push origin :refs/tags/$NEW_VERSION 2>/dev/null || true
git tag $NEW_VERSION
git push --follow-tags

Expand Down
Loading