-
Notifications
You must be signed in to change notification settings - Fork 14
48 lines (46 loc) · 1.22 KB
/
website.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
name: Website
on:
push:
branches:
- 'main'
jobs:
docs:
name: 'build gh-pages'
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Setup Environment
shell: bash
env:
WORKSPACE: ${{ github.workspace }}
run: |
echo "$HOME/.local/bin:$PATH" >> $GITHUB_PATH
echo "GITHUB_WORKSPACE=\"`pwd`\"" >> $GITHUB_ENV
- name: Checkout Black Magic Debug Website Repo
uses: actions/checkout@v3
with:
lfs: true
submodules: true
- name: Setup Sphinx
shell: bash
run: |
sudo apt-get update
sudo apt-get install graphviz
sudo pip3 install -U pip setuptools wheel
pip3 install --user -r requirements.txt
- name: Build
shell: bash
run: sphinx-build -b html . build
- name: Deploy
if: success()
uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: gh-pages
build_dir: build
keep_history: true
allow_empty_commit: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}