Skip to content

Workflow file for this run

name: Publish to pypi on Github release
on:
release:
types: [published]
jobs:
pypi-release:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Set up Python
uses: actions/[email protected]
with:
python-version: 3.11
- name: Install build & twine
run: python -m pip install build twine
- name: Publish to pypi
run: |
python -m build
twine upload dist/*
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}