Skip to content

Bump version to 0.20.0 (#1210) #6

Bump version to 0.20.0 (#1210)

Bump version to 0.20.0 (#1210) #6

Workflow file for this run

name: Upload to PyPI
on:
push:
tags:
- "*"
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: pip install twine wheel
- run: pip install -e .
- run: python setup.py sdist bdist_wheel
- run: twine upload --skip-existing dist/*
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}