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 bb9d637 commit a68e90dCopy full SHA for a68e90d
scripts/release.sh
@@ -26,10 +26,15 @@ git add pyproject.toml
26
git commit -m "chore: sync pyproject.toml version with tag ${LATEST_TAG}"
27
git push origin main
28
29
+# Wait a few seconds for GitHub to process the push
30
+echo "Waiting for GitHub to process the version update..."
31
+sleep 5
32
+
33
# Create GitHub release
34
echo "Creating GitHub release..."
35
gh release create "${LATEST_TAG}" \
36
--title "Release ${LATEST_TAG}" \
37
--generate-notes
38
39
echo "Released ${LATEST_TAG} successfully!"
40
+echo "The PyPI package will be published automatically by the GitHub workflow."
0 commit comments