Skip to content

Commit

Permalink
[Script] Add release_new_version.sh (#101)
Browse files Browse the repository at this point in the history
This PR adds a release_new_version.sh to help release new versions.
  • Loading branch information
Ubospica authored Nov 28, 2024
1 parent 6e73e1d commit c19acc8
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions scripts/release_new_version.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

set -ex

git fetch origin main
git checkout FETCH_HEAD
git commit -m "Tag $1" --allow-empty
git tag $1 HEAD
git push origin $1

0 comments on commit c19acc8

Please sign in to comment.