generated from navdeep-G/samplemod
-
Notifications
You must be signed in to change notification settings - Fork 16
54 lines (50 loc) · 1.34 KB
/
main.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
48
49
50
51
52
on:
push:
branches:
- main
jobs:
build_docs_job:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Dependencies
run: |
echo `python3 --version`
sudo apt-get install -y python-setuptools
python3 -m pip install --upgrade pip
python3 -m pip install setuptools
python3 -m pip install notebook
python3 -m pip install torch
python3 -m pip install matplotlib
sudo apt-get install -y yarn
id: build
- name: Add tutorials to Docs
run: |
cd tutorials
sh convert.sh
cd ..
- name: Build the Website
run: |
cd website
yarn
npm run build
- name: Check env
run: echo `which spinx-build`
- name: Build the docset
run: |
cd ./sphinx
pip install -r requirements.txt
make html
cd ..
- name: Get output time
run: echo "The time was ${{ steps.build.outputs.time }}"
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: website/build # The folder the action should deploy.