-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (37 loc) · 1.03 KB
/
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
46
47
name: Build documentation
on:
pull_request:
branches: [main]
workflow_call:
workflow_dispatch:
env:
DEB_PYTHON_INSTALL_LAYOUT: deb_system
DISPLAY: ":99.0"
CI: 1
jobs:
build:
runs-on: ubuntu-22.04
env:
PUBLISH_DIR: ./_build/html
DISPLAY: ":99.0"
PYVISTA_TRAME_SERVER_PROXY_PREFIX: "/proxy/"
PYVISTA_TRAME_SERVER_PROXY_ENABLED: "True"
PYVISTA_OFF_SCREEN: false
PYVISTA_JUPYTER_BACKEND: "html"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies for pyvista
run: sudo apt-get update && sudo apt-get install -y libgl1-mesa-dev xvfb
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: python3 -m pip install ".[docs]"
- name: Build docs
run: jupyter book build -W --keep-going .
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ${{ env.PUBLISH_DIR }}