-
Notifications
You must be signed in to change notification settings - Fork 2
60 lines (49 loc) · 1.68 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
48
49
50
51
52
53
54
55
56
57
58
59
60
# Simple workflow for deploying static content to GitHub Pages
name: Build docs
on:
pull_request:
branches:
- "main"
# This workflow can be executed inside another workfow file
workflow_call:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-22.04
container: ghcr.io/scientificcomputing/fenics-gmsh:2023-08-16
env:
DEB_PYTHON_INSTALL_LAYOUT: deb_system
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 pyvista dependencies"
run: apt-get update && apt-get install -y libgl1-mesa-glx libxrender1 xvfb nodejs
- name: Install dependencies
run: python3 -m pip install ".[docs,examples,pyvista]"
- name: Cache notebooks
id: cache-notebooks
uses: actions/cache@v4
with:
path: _build
key: cache_key_1 # Bump number manually when you want to clear the cache
- name: Copy build images
run: cp _build/html/_images/* demos/.
continue-on-error: true
- name: Build docs
run: jupyter book build -W --keep-going .
- name: Copy html images
continue-on-error: true
run: cp -r docs/_static ${{ env.PUBLISH_DIR }}/docs/.
- name: Upload documentation as artifact
uses: actions/upload-artifact@v4
with:
name: documentation
path: ${{ env.PUBLISH_DIR }}
if-no-files-found: error