Skip to content

Commit

Permalink
ci: Disable pushing to major version tag (#83)
Browse files Browse the repository at this point in the history
We're about to merge a change that will start as v4, and we don't want
to replace what `v3` has
  • Loading branch information
abatilo authored Jan 1, 2025
1 parent fd0e671 commit eb1669f
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,10 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git tag -d v3
git push --delete origin v3
git push origin :refs/tags/v3
git tag v3
git push --tags
# Temporarily disable as we merge #82 which will bump major version
# git tag -d v3
# git push --delete origin v3
# git push origin :refs/tags/v3
# git tag v3
# git push --tags

0 comments on commit eb1669f

Please sign in to comment.