-
Notifications
You must be signed in to change notification settings - Fork 8
66 lines (54 loc) · 1.8 KB
/
publish-docs.yml
File metadata and controls
66 lines (54 loc) · 1.8 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: "Publish documentation"
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch: # Manual trigger
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install system dependencies (pandoc)
run: |
sudo apt-get update
sudo apt-get install -y pandoc
- uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
- name: Create environment
run: |
pip install --upgrade pip
python -m venv .venv
source .venv/bin/activate
- name: Install the package with docs dependencies
run: pip install -e .[docs]
- name: Build docs
run: |
cd docs
make clean
make html
# Deploy stable docs (root of gh-pages) only from master pushes
- name: Deploy docs (stable)
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html
# Deploy PR preview docs to gh-pages under pr/<number>/
- name: Deploy docs (PR preview)
if: github.event_name == 'pull_request'
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html
destination_dir: pr/${{ github.event.pull_request.number }}
keep_files: true
- name: Print PR preview URL
if: github.event_name == 'pull_request'
run: |
echo "Deployed PR docs preview at: https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}/pr/${{ github.event.pull_request.number }}/"