We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6464e69 commit 4cdda29Copy full SHA for 4cdda29
scripts/pnpm_version_patch.sh
@@ -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