Skip to content

v1.3.0 - Add 3.12, drop 3.8, fixes #11

v1.3.0 - Add 3.12, drop 3.8, fixes

v1.3.0 - Add 3.12, drop 3.8, fixes #11

Workflow file for this run

name: Publish to PyPI
on:
release:
types: [published]
permissions:
contents: read
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
- name: Configure poetry
run: poetry config pypi-token.pypi ${{ secrets.PYPI_API_TOKEN }}
- name: Build using poetry
run: poetry build
- name: Publish using poetry
run: poetry publish