-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (58 loc) · 1.75 KB
/
documentation.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
53
54
55
56
57
58
59
60
61
62
name: Build documentation
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
build:
permissions:
id-token: write
pages: write
contents: write
runs-on: ubuntu-latest
steps:
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Setup Julia
uses: julia-actions/setup-julia@v1
with:
version: "1"
- name: Checkout
uses: actions/checkout@v2
with:
submodules: 'recursive'
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
- name: Setup dependencies
run: |
sudo apt-get update
sudo apt-get install python3-sphinx pandoc doxygen
python -m pip install --upgrade pip
python -m pip install sphinx_rtd_theme unidecode nbsphinx wheel breathe exhale
- name: Build Julia documentation and copy to output
run: |
cd CompasToolkit.jl
touch src/Constants.jl
julia --project=docs -e '
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()
'
julia --project=docs docs/make.jl
mkdir -p /tmp/sphinxnotes-pages
cp -R docs/build ../../api_julia
- name: Build and commit
uses: sphinx-notes/pages@v2
with:
documentation_path: './docs'
- name: Copy Julia documentation and commit
run: |
cp -R ../api_julia .
git add api_julia
git commit -a -m "Adding generated Julia documentation"
- name: Push documentation
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages