Skip to content

FIX: SystemExit is a special erorr, fixed to ValueError #36

FIX: SystemExit is a special erorr, fixed to ValueError

FIX: SystemExit is a special erorr, fixed to ValueError #36

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
jobs:
Build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Install the project
run: uv sync --group docs
- name: Build Documentation
run: |
cd docs
uv run make html
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/build/html