We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be4d661 commit f98bb20Copy full SHA for f98bb20
.gitignore
@@ -13,4 +13,3 @@ coverage/
13
*.swo
14
.claude-memory.md
15
scripts/manual-release.sh
16
-scripts/manual-release.sh
scripts/manual-release.sh
@@ -47,6 +47,12 @@ echo "📤 Pushing to GitHub..."
47
git push origin main
48
git push origin "v$NEW_VERSION"
49
50
+# Get the commit message for the release notes
51
+COMMIT_MESSAGE=$(git log -1 --pretty=%B)
52
+
53
+echo "📢 Creating GitHub release..."
54
+gh release create "v$NEW_VERSION" --target main --title "v$NEW_VERSION" --notes "$COMMIT_MESSAGE"
55
56
echo ""
57
echo "✅ Manual release complete!"
58
echo "📋 Version: $NEW_VERSION"
0 commit comments