forked from godotengine/godot-docs
-
Notifications
You must be signed in to change notification settings - Fork 1
36 lines (32 loc) · 1001 Bytes
/
build_offline_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
name: Build documentation for offline usage
on:
workflow_dispatch:
schedule:
# Every week on Monday at midnight (UTC).
# This keeps the generated HTML documentation fresh.
- cron: '0 0 * * 1'
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
branch:
- master
- stable
steps:
- uses: actions/checkout@v3
with:
ref: ${{ matrix.branch }}
- name: Install dependencies
run: |
sudo pip3 install -r requirements.txt
sudo pip3 install codespell
- name: Sphinx build HTML
run: make SPHINXOPTS='--color' html
- uses: actions/upload-artifact@v3
with:
name: godot-docs-html-${{ matrix.branch }}
path: _build/html
# Keep the current build and the previous build (in case a scheduled build failed).
# This makes it more likely to have at least one successful build available at all times.
retention-days: 15