From 27b5b6f4eaef1d120187bc9095dbe01a464a570d Mon Sep 17 00:00:00 2001 From: bendtherules Date: Fri, 17 Apr 2026 17:05:14 +0530 Subject: [PATCH] fix(release): streamline version bump process and remove commit step --- scripts/release.sh | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/scripts/release.sh b/scripts/release.sh index 8b3791a..3070313 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -64,15 +64,8 @@ echo "✅ No uncommitted changes" if [ -n "$BUMP_VERSION" ]; then echo "" echo "📦 Bumping $BUMP_VERSION version..." - npm version $BUMP_VERSION --no-git-tag-version - echo "✅ Version bumped" - - # Commit version bump - echo "" - echo "📝 Committing version bump..." - git add package.json - git commit -m "chore: bump version to $(grep -o '"version": "[^"]*"' package.json | cut -d'"' -f4)" - echo "✅ Version bump committed" + npm version $BUMP_VERSION + echo "✅ Version bumped and tagged" fi echo ""