Skip to content

Release PyPI

Release PyPI #20

Workflow file for this run

name: Release
on:
workflow_dispatch:
inputs:
version:
description: set release version
required: true
permissions:
contents: write
jobs:
pypi:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python - -y
- name: build docs
run: |
poetry install
poetry install --with docs
python3 docs/build.py
- name: Deploy docs
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: docs/_build/html
- name: Publish
run: |
poetry version ${{ github.event.inputs.version }}
poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}
poetry build && poetry publish