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 0929205 commit 28340e9Copy full SHA for 28340e9
scripts/release.sh
@@ -36,9 +36,12 @@ git add pyproject.toml
36
# Commit version bump
37
git commit -m "chore: bump version to ${NEW_VERSION}"
38
39
-# Create and push tag
40
-git tag -a "v${NEW_VERSION}" -m "Release v${NEW_VERSION}"
41
-git push origin main --tags
+# Push commit
+git push origin main
+
42
+# Create and push only the new tag
43
+git tag "v${NEW_VERSION}"
44
+git push origin "v${NEW_VERSION}"
45
46
# Create GitHub release
47
echo "Creating GitHub release..."
0 commit comments