-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (37 loc) · 1.88 KB
/
docs.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
# Sphinx documentation build and push to GitHub pages
name: build-docs
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Install documentation dependencies
run: |
sudo apt install opencl-c-headers ocl-icd-opencl-dev
pip3 install -U -r $GITHUB_WORKSPACE/doc/requirements.txt
pip3 install -U --ignore-installed $GITHUB_WORKSPACE
- name: Run the documentation build
run: |
sphinx-build -M html $GITHUB_WORKSPACE/doc $GITHUB_WORKSPACE/build
touch $GITHUB_WORKSPACE/build/html/.nojekyll
- name: JSON endpoint on success
if: ${{ success() }}
run: python -c 'import json; print(json.dumps(dict(schemaVersion=1, label="build-docs", style="for-the-badge", namedLogo="github", message="success", color="green")))' > $GITHUB_WORKSPACE/build/html/endpoint.json
- name: JSON endpoint on failure
if: ${{ failure() }}
run: python -c 'import json; print(json.dumps(dict(schemaVersion=1, label="build-docs", style="for-the-badge", namedLogo="github", message="failure", color="red")))' > $GITHUB_WORKSPACE/build/html/endpoint.json
- name: Push to documentation branch
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: gh-pages # The branch name where you want to push the assets
FOLDER: build/html # The directory where your assets are generated
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # GitHub will automatically add this
MESSAGE: "Build: ({sha}) {msg}" # The commit message