Skip to content

v1.8.0 (2024-06-13) #28

v1.8.0 (2024-06-13)

v1.8.0 (2024-06-13) #28

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@v2
- uses: actions/setup-python@v2
with:
python-version: "3.12"
- 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