Skip to content

maint: bump to v2.0.4 #41

maint: bump to v2.0.4

maint: bump to v2.0.4 #41

Workflow file for this run

name: CD
on: push
jobs:
publish:
runs-on: ubuntu-latest
if: startsWith(github.event.ref, 'refs/tags')
steps:
- name: get repo
uses: actions/checkout@v2
- name: set up Python
uses: actions/setup-python@v2
- name: build package
run: |
pip install build
python -m build
- name: publish to PyPI
run: |
pip install twine
twine upload dist/* -u __token__ -p ${{ secrets.pypi_token }}