Skip to content

Minor adjustment in docs #40

Minor adjustment in docs

Minor adjustment in docs #40

Workflow file for this run

name: Build documentation
on:
push:
branches:
- main
paths:
- "docs/**"
concurrency:
group: pages
cancel-in-progress: false
permissions:
contents: write
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[docs]"
- name: Build documentation
run: jupyter-book build docs
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/html