forked from OpenSTEF/openstef
-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (48 loc) · 1.69 KB
/
docs-publish.yaml
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
# SPDX-FileCopyrightText: 2017-2021 Contributors to the OpenSTF project <[email protected]> # noqa E501
#
# SPDX-License-Identifier: MPL-2.0
name: Docs Publish
on:
- release
jobs:
docs:
runs-on: ubuntu-latest
steps:
# Checkout
- name: Checkout code
uses: actions/checkout@v2
# Run Apidoc and subsequently build documentation (implicit in action).
- name: Build documentation
uses: ammaraskar/sphinx-action@master
with:
pre-build-command: |
cp requirements.txt docs/requirements.txt &&\
printf "\nsphinx_rtd_theme\n" >> docs/requirements.txt &&\
sphinx-apidoc -o docs openstef
docs-folder: "docs/"
# Upload artifact so it is available from the action-window
- name: Upload artifact
uses: actions/upload-artifact@v1
with:
name: html-documentation
path: docs/_build/html/
# Commit documentation changes to the gh-pages branch
- name: Commit documentation changes
run: |
git clone https://github.com/OpenSTEF/openstef.git --branch gh-pages --single-branch gh-pages
cp -r docs/_build/html/* gh-pages/
cd gh-pages
touch .nojekyll
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add .
git commit -m "Update documentation" -a || true
# The above command will fail if no changes were present, so we ignore
# that.
# Push changes (will publish documentation)
- name: Push changes
uses: ad-m/github-push-action@master
with:
branch: gh-pages
directory: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}