Skip to content

Release 0.2.0

Release 0.2.0 #9

Workflow file for this run

name: Publish to PyPI
on:
release:
types:
- published
jobs:
build-n-publish:
name: Build and publish to PyPI
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Build a binary wheel and a source tarball
run: |
python -m pip install --upgrade build
python -m build
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
# Password is set in GitHub UI to an API secret for pypi
user: __token__
password: ${{ secrets.PYPI_API_KEY }}