-
Notifications
You must be signed in to change notification settings - Fork 74
43 lines (37 loc) · 1.39 KB
/
check-mkdocs-build.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
name: CheckMkDocsBuild
on:
# Trigger the workflow on a new pull request on master
pull_request_target:
branches:
- master
jobs:
build-docs-site:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Allow to move dotfiles
run: |
# move also dotfile with *
shopt -s dotglob
- name: Clone Moonbeam MKDocs
run: |
# clone mkdocs repo locally
git clone https://${{ secrets.REPO_SCOPED_TOKEN }}@github.com/papermoonio/moonbeam-mkdocs.git
- name: Move moonbeam-docs contents to mkdocs repository
run: |
mkdir moonbeam-mkdocs/moonbeam-docs
mv * moonbeam-mkdocs/moonbeam-docs &> /dev/null || echo "Error with mv expected due to recursively moving all contents into subfolder"
- name: Install pip requirements
run: |
cd moonbeam-mkdocs
# upgrade pip
pip3 install --upgrade pip setuptools==65.7.0
# install dependencies quietly
pip3 install -r requirements.txt &> /dev/null && echo "Dependencies installed" || echo "Error while installing dependencies"
- name: Build mkdocs
run: |
cd moonbeam-mkdocs
# change destination build folder in mkdocs YAML to local site/
sed -i 's/site_dir.*/site_dir: site/' mkdocs.yml
# build project
python3 -m mkdocs build