v0.6.2 #8
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: pypi_upload | |
on: | |
release: | |
types: [published] | |
jobs: | |
build: | |
name: PyPI Upload | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
cache: 'pip' | |
cache-dependency-path: 'pyproject.toml' | |
- name: Install latest pip, build, twine | |
run: | | |
python -m pip install --upgrade --disable-pip-version-check pip | |
python -m pip install --upgrade build twine | |
- name: Build wheel and source distributions | |
run: | | |
python -m build | |
- name: Upload to PyPI via Twine | |
env: | |
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} | |
run: | | |
twine upload --verbose -u '__token__' dist/* |