-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (55 loc) · 1.72 KB
/
Copy pathdocs.yml
File metadata and controls
67 lines (55 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: Docs
on:
push:
branches: [main]
workflow_dispatch:
# Publish to GitHub Pages via OIDC (no gh-pages branch).
permissions:
contents: read
pages: write
id-token: write
# One concurrent deploy; don't cancel an in-progress publish.
concurrency:
group: pages
cancel-in-progress: false
jobs:
preflight:
uses: ./.github/workflows/preflight.yml
# The build always runs so the docs stay green even while deploy is off.
build:
needs: preflight
if: needs.preflight.outputs.ok == 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.12"
cache: pip
cache-dependency-path: "**/pyproject.toml"
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
workspaces: crates
# `pip install -e .` compiles the Rust extension (setuptools-rust); the
# [docs] extra brings Sphinx, the theme, nbsphinx, and bundled pandoc.
- name: Install
run: pip install -e '.[docs]'
- name: Build docs
run: sphinx-build -b html -W --keep-going docs docs/_build/html
- uses: actions/upload-pages-artifact@v3
with:
path: docs/_build/html
deploy:
# Dormant until docs are turned on: enable GitHub Pages
# (Settings -> Pages -> Source: GitHub Actions), then set the repository
# variable DEPLOY_DOCS=true (Settings -> Secrets and variables -> Actions).
needs: build
if: vars.DEPLOY_DOCS == 'true'
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v4