Skip to content

0.1.0

0.1.0 #1

Workflow file for this run

name: Upload Python Package
on:
release:
types:
- created
permissions:
contents: read
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Authenticate with PyPI
env:
POETRY_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: poetry config pypi-token.pypi $POETRY_TOKEN
- name: Build and Publish
run: poetry publish --build