diff --git a/scripts/release.sh b/scripts/release.sh index b216c07..bd935e0 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -63,7 +63,9 @@ git tag "v$VERSION" echo "Done!" echo "Next steps:" -echo "1. git push -u origin $BRANCH" -echo "2. gh pr create --title \"chore: release v$VERSION\" --body \"Bump version to $VERSION\"" -echo "3. After merge, push the tag: git push origin v$VERSION" -echo "4. Check GitHub Actions for the Release process." +echo "1. git push origin $BRANCH" +echo "2. git push origin v$VERSION" +echo "3. Create a PR to merge '$BRANCH' into main" +echo " gh pr create --title 'chore: release v$VERSION' --body 'Bump version to $VERSION'" +echo "4. After merge, push the tag: git push origin v$VERSION" +echo "5. Check GitHub Actions for the Release process."