-
-
Notifications
You must be signed in to change notification settings - Fork 43
42 lines (34 loc) · 998 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
name: Build Documentation website
on:
push:
branches: [main]
permissions:
contents: write
jobs:
docs:
name: Generate Website
runs-on: ubuntu-latest
env:
SPHINX_GITHUB_CHANGELOG_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- run: sudo apt-get install xvfb
- name: Install dependencies
run: pip install -r docs/requirements.txt
- name: Install Minari
run: pip install .[all]
- name: Build Datasets Docs
run: xvfb-run --auto-servernum python docs/_scripts/gen_dataset_md.py
- name: Build
run: sphinx-build -b dirhtml -v docs _build
- name: Remove .doctrees
run: rm -r _build/.doctrees
- name: Upload to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: _build
target-folder: main
clean: false