-
Notifications
You must be signed in to change notification settings - Fork 4
62 lines (54 loc) · 1.83 KB
/
Build_docs.yml
File metadata and controls
62 lines (54 loc) · 1.83 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
name: Build docs
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
build:
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac.
# You can convert this to a matrix build if you need cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- name: Build docs
run: |
sudo apt-get update
sudo apt-get install doxygen
sudo apt-get install graphviz
pip install -U sphinx
pip install sphinx-tabs
pip3 install sphinx-rtd-theme
pip3 install breathe
pip3 install sphinx-sitemap
pip3 install sphinx-toolbox
cd docs_sphinx
sphinx-build -b html . public
mv custom.css public/_static/
cd ..
mkdir public
mv docs_sphinx/public/* public
echo "" > public/.nojekyll
shell: bash
- uses: actions/upload-pages-artifact@v0
with:
path: public
- name: Pushes to another repository
uses: cpina/github-action-push-to-another-repository@main
env:
SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }}
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
with:
source-directory: public
destination-github-username: 'OxfordTechnicalSolutions'
destination-repository-name: 'OxfordTechnicalSolutions.github.io'
user-email: automated_push_from_gad_SDK
target-branch: master