Skip to content

feat: Add GitHub Actions workflow for Sphinx documentation #1

feat: Add GitHub Actions workflow for Sphinx documentation

feat: Add GitHub Actions workflow for Sphinx documentation #1

Workflow file for this run

name: GitHub Pages
on:
push:
branches: ["main"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up uv
uses: astral-sh/setup-uv@v6
with:
uv-version: latest
- name: Install dependencies
run: uv sync
- name: Sphinx build
run: uv run sphinx-build source build/html
- name: Configure Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'build/html'
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4