1.4.7 #10
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
release: | |
types: | |
- published | |
env: | |
DEFAULT_PYTHON: 3.11 | |
jobs: | |
release-pypi: | |
name: Upload release to PyPI | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code from Github | |
uses: actions/[email protected] | |
- name: Set up Python ${{ env.DEFAULT_PYTHON }} | |
id: python | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ env.DEFAULT_PYTHON }} | |
- name: Install requirements | |
run: | | |
python -m pip install -U pip twine wheel | |
python -m pip install -U "setuptools>=56.0.0" | |
- name: Build distributions | |
run: | | |
python setup.py sdist bdist_wheel | |
- name: Upload to PyPI | |
if: github.event_name == 'release' && startsWith(github.ref, 'refs/tags') | |
env: | |
TWINE_REPOSITORY: pypi | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} | |
run: | | |
twine upload --verbose dist/* |