-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (31 loc) · 1.06 KB
/
deploy-pages.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
name: Deploy to GitHub Pages
on:
push:
branches: [master]
jobs:
deploy-to-pages:
runs-on: ubuntu-latest
steps:
- name: 🛎️ Checkout
uses: actions/checkout@v2
- name: 🐍 Set up Python
uses: actions/setup-python@v2
with:
python-version: 3
cache: pip
cache-dependency-path: requirements-render.txt
- name: 👷 Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-render.txt
- name: 🔧 Render with Sphinx
run: python render.py ci
# remove the .doctrees folder when building for deployment as it takes two thirds of disk space
- name: 🔥 Clean up files
run: rm -r render/.doctrees/
- name: 🚀 Deploy to GitHub pages
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch to deploy to.
folder: render # Synchronise with build.py -> build_directory
single-commit: true # Delete existing files