Skip to content

2.0.7

2.0.7 #8

Workflow file for this run

name: Deploy to PyPI
on:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Build Package
run: |
pip install -U wheel build
python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@v1.4.1
with:
skip_existing: true
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}