always include notes, even on alpha releases

This commit is contained in:
Alex Garcia 2024-08-05 16:04:08 -07:00
parent 4c262b1a9c
commit 748110552c

View file

@ -18,7 +18,7 @@ git tag v$VERSION
git push origin main v$VERSION
if grep -qE "alpha|beta" VERSION; then
gh release create v$VERSION --title=v$VERSION --prerelease --notes=""
gh release create v$VERSION --title=v$VERSION --prerelease
else
gh release create v$VERSION --title=v$VERSION
fi