-
Notifications
You must be signed in to change notification settings - Fork 33
42 lines (40 loc) · 1.12 KB
/
ci.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: ci
on:
push:
branches:
- main
env:
PYTHON_VERSION: 3.8
jobs:
deploy:
name: Build documentation
runs-on: ubuntu-latest
steps:
- name: Checkout main branch
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Download videos branch and unzip
run: |
wget https://codeload.github.com/MiSTer-devel/MkDocs_MiSTer/zip/refs/heads/videos || exit 1
unzip videos || exit 1
cd MkDocs_MiSTer-videos/ || exit 1
cp -r docs ../ || exit 1
- name: Setup Python runtime
uses: actions/setup-python@v3
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Cache Python dependencies
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install Python Dependencies
run: |
pip install -r requirements.txt
- name: Deploy Documentation
run: |
mkdocs gh-deploy --force
mkdocs --version