File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -69,12 +69,15 @@ if [[ "$CONFIRM" != "y" && "$CONFIRM" != "Y" ]]; then
6969 exit 1
7070fi
7171
72- # --- Step 5: Update package.json ---
72+ # --- Step 5: Build and Deploy ---
73+ bun run deploy
74+
75+ # --- Step 6: Update package.json ---
7376echo " 🔄 Updating $PACKAGE_JSON to v$NEW_VERSION ..."
7477jq --arg v " $NEW_VERSION " ' .version = $v' " $PACKAGE_JSON " > tmp.$$ .json && mv tmp.$$ .json " $PACKAGE_JSON "
7578TAG=" v$NEW_VERSION "
7679
77- # --- Step 6 : Git Commit and push ---
80+ # --- Step 7 : Git Commit and push ---
7881git add " $CHANGELOG_FILE " " $PACKAGE_JSON "
7982git commit -m " chore(release): v$NEW_VERSION "
8083git tag -a " $TAG " -m " Release v$NEW_VERSION "
@@ -83,7 +86,7 @@ git push origin --tags
8386git push gitlab main
8487git push gitlab --tags
8588
86- # --- Step 7 : Create GitHub release ---
89+ # --- Step 8 : Create GitHub release ---
8790echo " ☁️ Creating GitHub release..."
8891gh release create " $TAG " \
8992 --title " v$NEW_VERSION " \
You can’t perform that action at this time.
0 commit comments