-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (54 loc) · 1.58 KB
/
docs.yml
File metadata and controls
63 lines (54 loc) · 1.58 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
name: Docs
# Pull requests build the site in strict mode to catch broken links and nav.
# The site is published only when a release is published (so it tracks the latest
# released version), or manually via workflow_dispatch.
on:
release:
types:
- published
pull_request:
workflow_dispatch:
# Least privilege: the top level (inherited by the PR build job) is read-only;
# the Pages and OIDC scopes are granted only to the deploy job below.
permissions:
contents: read
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
name: Build site
runs-on: ubuntu-latest
steps:
- name: Clone the code
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.x"
- name: Install docs dependencies
run: pip install -r requirements-docs.txt
- name: Build site (strict)
run: mkdocs build --strict
- name: Upload Pages artifact
if: github.event_name == 'release' || github.event_name == 'workflow_dispatch'
uses: actions/upload-pages-artifact@v5
with:
path: site
deploy:
name: Deploy to GitHub Pages
needs: build
if: github.event_name == 'release' || github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy
id: deployment
uses: actions/deploy-pages@v5