Release script fix

This commit is contained in:
Jake Poznanski 2025-09-29 17:37:14 +00:00
parent c587eb9050
commit fb1ef9e38a

View File

@ -68,6 +68,7 @@ read -p "Creating new release for $TAG. Do you want to continue? [Y/n] " prompt
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
python scripts/prepare_changelog.py
git add CHANGELOG.md
git commit -m "Bump version to $TAG for release" || true && git push
echo "Creating new git tag $TAG"
git tag "$TAG" -m "$TAG"