Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,3 @@ coverage/
*.swo
.claude-memory.md
scripts/manual-release.sh
scripts/manual-release.sh
6 changes: 6 additions & 0 deletions scripts/manual-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@ echo "📤 Pushing to GitHub..."
git push origin main
git push origin "v$NEW_VERSION"

# Get the commit message for the release notes
COMMIT_MESSAGE=$(git log -1 --pretty=%B)

echo "📢 Creating GitHub release..."
gh release create "v$NEW_VERSION" --target main --title "v$NEW_VERSION" --notes "$COMMIT_MESSAGE"

echo ""
echo "✅ Manual release complete!"
echo "📋 Version: $NEW_VERSION"
Expand Down