Skip to content

fix: :wrench - Extend documentation #13

fix: :wrench - Extend documentation

fix: :wrench - Extend documentation #13

Workflow file for this run

name: CI - Deploy to Pypi
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install Poetry & Tox
run: pip install poetry tox
- name: Install Dependencies
run: poetry install
- name: Run Tox
run: tox -e py310
- name: Poetry Publish
run: |
poetry build -f sdist
poetry publish
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}