-
Notifications
You must be signed in to change notification settings - Fork 3
45 lines (38 loc) · 1007 Bytes
/
build-docs.yml
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
name: Documentation build
on:
push:
branches: ["main"]
permissions:
contents: write
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
DEBIAN_FRONTEND: "noninteractive"
steps:
- name: Install dependencies
run: |
sudo apt -qqy update && sudo apt -qqy --no-install-recommends install \
python3 python3-pip
- name: Setup repository
uses: actions/checkout@v4
- name: Build Docs
run: |
pushd docs
pip3 install -r requirements.txt
TZ=UTC make html
popd
ls -lah docs/build
- name: Pack artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: docs
path: ./docs/build
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build/html