-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (39 loc) · 1.24 KB
/
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
40
41
42
43
44
45
46
47
name: Update pages
on: workflow_dispatch
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Cache
uses: actions/cache@v3
with:
path: .cache/audbcards
key: audbcards
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
# Remove apt repos that are known to break from time to time
# See https://github.com/actions/virtual-environments/issues/323
- name: Remove broken apt repos
run: |
for apt_file in `grep -lr microsoft /etc/apt/sources.list.d/`; do sudo rm $apt_file; done
# Documentation
- name: Install doc dependencies
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends --yes libsndfile1 ffmpeg mediainfo
pip install -r docs/requirements.txt
- name: Build documentation
run: |
export AUDBCARDS_CACHE_ROOT=".cache/audbcards"
python pre-fill-cache.py
python -m sphinx docs/ docs/build/ -b html
- name: Deploy documentation to Github pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build