-
Notifications
You must be signed in to change notification settings - Fork 5
72 lines (58 loc) · 1.52 KB
/
build-docs.yml
File metadata and controls
72 lines (58 loc) · 1.52 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
68
69
70
71
72
name: build-docs
on:
workflow_call:
inputs:
deploy:
required: false
default: false
type: boolean
workflow_dispatch:
inputs:
deploy:
description: "Publish docs?"
required: true
type: boolean
concurrency:
group: docs-build-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
# Many color libraries just need this to be set to any value, but at least
# one distinguishes color depth, where "3" -> "256-bit color".
FORCE_COLOR: 3
jobs:
build:
name: Build and deploy docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
- uses: actions/setup-python@v6
with:
python-version: "3.13"
allow-prereleases: true
- uses: astral-sh/setup-uv@v7
- name: Install package
run: uv sync
- name: Build docs
run: >-
cd docs;
uv run make html
- uses: actions/upload-pages-artifact@v4
with:
path: docs/build/html
deploy:
needs: build
runs-on: ubuntu-latest
if: inputs.deploy
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/deploy-pages@v4
if: inputs.deploy