-
Notifications
You must be signed in to change notification settings - Fork 39
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
[ci] Added workflow for publish on PyPI #118
Conversation
.github/workflows/python-publish.yml
Outdated
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v3 |
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.
isn't v5 available?
.github/workflows/python-publish.yml
Outdated
python-version: '3.10' | ||
- name: Install dependencies | ||
run: | | ||
pip install -U pip wheel setutools |
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.
maybe this is is not so important in this job and we can skip it
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.
Let's rename the file to pypi.yml
.github/workflows/python-publish.yml
Outdated
@@ -0,0 +1,32 @@ | |||
name: Upload Python Package |
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.
name: Upload Python Package | |
name: Release Python Package on Pypi.org |
Added workflow for publish on PyPI