Skip to content

Commit

Permalink
Publish version v0.1.4-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
Kitenite committed Dec 12, 2024
1 parent 2ecaa76 commit 62a0ec1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/publish_tag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ VERSION=$(node -p "require('./apps/studio/package.json').version")
git add .

# Commit changes with a message
git commit -m "Publish version v$VERSION"
git commit -m "Publish version v$VERSION" --no-verify

# Create an annotated tag
git tag -a v$VERSION -m "Version $VERSION"
git tag -a v$VERSION -m "Version $VERSION" --no-verify

# Push the tag to the remote repository
git push --follow-tags origin HEAD

0 comments on commit 62a0ec1

Please sign in to comment.