Skip to content
This repository was archived by the owner on Aug 26, 2025. It is now read-only.

v0.21.1

v0.21.1 #35

Workflow file for this run

name: PyPi Publish
on:
release:
types:
- published
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install Poetry
run: |
pip install pipx
pipx install poetry
- name: Install Dependencies
run: |
poetry install
- name: Add pypi token to Poetry
run: |
poetry config pypi-token.pypi ${{ secrets.PYPI_API_KEY }}
- name: Publish package
run: poetry publish --build