Skip to content

1.1.0 - Python 3.13 supported :D #6

1.1.0 - Python 3.13 supported :D

1.1.0 - Python 3.13 supported :D #6

Workflow file for this run

name: Publish to Pypi
on:
release:
types:
- published
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.12']
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Install dependencies
run: poetry install --no-root --without dev,test
- name: Publish to Pipy
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }}
run: poetry publish --build --username __token__ --password $POETRY_PYPI_TOKEN_PYPI