Skip to content

Release 4.4.2

Release 4.4.2 #95

name: Publish to PyPI
on:
release:
types:
- created
jobs:
build-n-publish:
name: Build and publish Python distribution to PyPI
runs-on: ubuntu-latest
steps:
- name: Check out git repository
uses: actions/[email protected]
- name: Set up Python 3.11
uses: actions/[email protected]
with:
python-version: 3.11
- name: Install poetry
uses: abatilo/[email protected]
with:
poetry-version: "1.4.0"
- name: Build and publish to PYPI
run: |
poetry publish --build
env:
GITHUB: 1
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.POETRY_PYPI_TOKEN_PYPI }}