Skip to content

Commit 4cdda29

Browse files
committed
🔨 Add script for patching version and creating release
1 parent 6464e69 commit 4cdda29

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

scripts/pnpm_version_patch.sh

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/bin/sh
2+
3+
VERSION=$(pnpm version patch --no-git-tag-version)
4+
5+
echo 'Do you want to publish @coderabbitai/bitbucket@'$VERSION'? (y/n) '
6+
read Y
7+
if [ "$Y" = "y" ]; then
8+
echo "Publishing version $VERSION"
9+
else
10+
git checkout -- package.json
11+
exit 1
12+
fi
13+
14+
git commit --all --message "🔖 $VERSION"
15+
git tag --annotate --message "🔖 $VERSION" --sign $VERSION
16+
git push
17+
git push --tags
18+
19+
gh release create $VERSION --generate-notes --title $VERSION --verify-tag

0 commit comments

Comments
 (0)