-
Notifications
You must be signed in to change notification settings - Fork 0
90 lines (78 loc) · 2.45 KB
/
Copy pathdeploy_docs.yml
File metadata and controls
90 lines (78 loc) · 2.45 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: Deploy Docs
on:
workflow_dispatch: # manual trigger to kick off workflow
inputs:
logLevel:
description: "Log level"
required: true
default: "warning"
jobs:
build_docs:
runs-on: ubuntu-latest
steps:
- name: Checkout iblenv doc build branch
uses: actions/checkout@v3
with:
ref: master # TODO: Change this for production
- name: Checkout ibllib doc build branch
uses: actions/checkout@v3
with:
repository: int-brain-lab/ibllib
ref: docs
path: ibllib-repo
- name: Checkout ONE-api
uses: actions/checkout@v3
with:
repository: int-brain-lab/one
path: ONE
- name: Move ibllib and ONE up a directory
run: |
mv ibllib-repo ..
mv ONE ..
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install docs requirements
run: |
sudo apt-get install -y pandoc
pip install -r docs_gh_pages/requirements-docs.txt
pip install -e ../ibllib-repo
jupyter nbextension enable --py --sys-prefix ipyevents
- name: ONE setup and build docs
run: |
cd docs_gh_pages
python scripts/one_setup.py
python make_script.py -e
ls -l _build
- name: Zip up documentation
run: |
sudo apt-get install -y zip
zip -r build_zip docs_gh_pages/_build
- name: Store zip file as artifacts
uses: actions/upload-artifact@v3
with:
name: build_zip
path: |
build_zip.zip
- name: Clean up documentation
run: |
cd docs_gh_pages
python make_script.py -pc
- name: Commit documentation changes
run: |
git clone https://github.com/mayofaulkner/bb_documentation.git --branch gh-pages --single-branch gh-pages
cp -r docs_gh_pages/_build/html/* gh-pages/
cd gh-pages
touch .nojekyll
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add .
git commit -m "Update documentation" -a || true
- name: Push changes
uses: ad-m/github-push-action@master
with:
branch: gh-pages
directory: gh-pages
force: True
github_token: ${{ secrets.GITHUB_TOKEN }}