Skip to content

v0.13.0 (2024-12-09) #16

v0.13.0 (2024-12-09)

v0.13.0 (2024-12-09) #16

Workflow file for this run

name: GitHub Pages
on:
release:
types:
- created
jobs:
job:
name: GitHub Pages
runs-on: ubuntu-latest
env:
POETRY_VIRTUALENVS_CREATE: false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install project dependencies
run: pip install poetry && poetry install
- name: Build docs
run: docs/build
- name: Deploy docs
uses: peaceiris/actions-gh-pages@v3
with:
force_orphan: true
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build