-
Notifications
You must be signed in to change notification settings - Fork 24
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
Add release workflow for PyPI + TestPyPI #45
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #45 +/- ##
========================================
Coverage 76.85% 76.85%
========================================
Files 14 14
Lines 337 337
========================================
Hits 259 259
Misses 78 78 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks great, did you setup pybop on testpypi and pypi?
runs-on: ubuntu-latest | ||
environment: | ||
name: pypi | ||
url: https://pypi.org/p/pybop |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
couldn't find pybop on pypi? Did you make an account?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's in a pending state until the first deployment, if you send across your PyPI username I'll add you to the project.
|
||
environment: | ||
name: testpypi | ||
url: https://test.pypi.org/p/<package-name> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
insert package-name here :)
This adds a release workflow that is triggered on push. This will deploy new releases onto TestPyPI with each push and only tagged releases to PyPI. This PR closes #44.