Skip to content

Version 12.2.2

Version 12.2.2 #94

Workflow file for this run

name: Release PyPI Package
on:
workflow_dispatch:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Poetry
run: python -m pip install 'poetry>=1.8.3,<1.9'
- name: Set token
run: python -m poetry config pypi-token.pypi ${{ secrets.PYPI_API_TOKEN }}
- name: Build and publish to PyPI
run: python -m poetry publish --build