Skip to content

rm static

rm static #10

Workflow file for this run

name: documentation
on: [push, pull_request, workflow_dispatch]
permissions:
contents: write
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install dependencies
run: |
pip install uv
uv sync
- name: Sphinx build
run: |
cd doc && make html && cd ..
- name: add nojekill
run: touch doc/_build/html/.nojekyll
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: html-docs
path: doc/_build/html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: doc/_build/html