Skip to content

Merge pull request #55 from qec-codes/gidney-2025 #12

Merge pull request #55 from qec-codes/gidney-2025

Merge pull request #55 from qec-codes/gidney-2025 #12

Workflow file for this run

name: Deploy Sphinx documentation to GitHub Pages
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up uv
uses: astral-sh/setup-uv@v5
- name: Install the project
run: uv sync
- name: Build HTML
run: uv run sphinx-build -b html docs/source docs/_build/html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/html