Skip to content

reverting pypi to stable ver #82

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 7, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,10 +146,16 @@ jobs:
# Create and push tag
git tag v$BETA_VERSION

# Push both the commit and the tag
git push origin HEAD:dev
# Create a new branch for the version bump
git checkout -b bump-version-to-$BETA_VERSION

# Push the branch and tag
git push origin bump-version-to-$BETA_VERSION
git push origin v$BETA_VERSION

# Create a pull request for the version bump
gh pr create --base dev --head bump-version-to-$BETA_VERSION --title "Bump version to $BETA_VERSION" --body "Automated version bump to $BETA_VERSION"

# Create GitHub release
gh release create v$BETA_VERSION --prerelease --title "Beta Release v$BETA_VERSION" --notes "Automated beta release from dev branch"
- name: Publish to PyPI as Beta
Expand Down