Skip to content

0.8.0

0.8.0 #16

Workflow file for this run

name: Publish PyPI
on:
release:
types: [ published ]
workflow_dispatch:
jobs:
publish_pypi:
runs-on: ubuntu-latest
name: Push python package to PyPI
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Build and publish to pypi
uses: JRubics/[email protected]
with:
pypi_token: ${{ secrets.PYPI_API_TOKEN }}
ignore_dev_requirements: true
python_version: 3.9