Skip to content

1.1.0

1.1.0 #13

Workflow file for this run

name: Publish to PyPi.
on:
release:
types: [ published ]
jobs:
build-n-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install wheel
run: python3 -m pip install wheel
- name: Build a binary wheel and a source tarball
run: python3 setup.py sdist bdist_wheel
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}