-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (64 loc) · 1.63 KB
/
Copy pathdocs.yml
File metadata and controls
66 lines (64 loc) · 1.63 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
name: Build & Deploy GH-Pages
on:
pull_request:
branches:
- main
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install nox
shell: bash
run: |
python3 -m pip install --upgrade pip
python3 -m pip install nox nox-poetry poetry poetry-plugin-export
- name: Build Sphinx
shell: bash
env:
GITHUB_REF_NAME: ${{ github.event.client_payload.pull_request.head.ref || github.event.pull_request.head.ref || github.ref_name }}
run: |
nox --non-interactive --session=docs
- uses: actions/upload-artifact@v7
with:
name: build
path: docs/build
if-no-files-found: error
retention-days: 7
deploy:
if: github.ref == 'refs/heads/main'
needs:
- build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
steps:
- uses: actions/download-artifact@v8
with:
name: build
path: docs/build
- name: Touch nojekyll
shell: bash
run: |
touch docs/build/.nojekyll
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v5
with:
path: docs/build
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5