Skip to content

Commit fa85cc7

Browse files
committed
Action to deploy documentation to gh-pages
1 parent 752a285 commit fa85cc7

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

Diff for: .github/workflows/deploy_docs.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
2+
on:
3+
# Every push onto the main branch regerenates the documentation
4+
push:
5+
branches:
6+
- 'master'
7+
8+
jobs:
9+
10+
do-deploy:
11+
runs-on: ubuntu-latest
12+
name: 'Build documentation on Linux'
13+
# steps:
14+
#
15+
# - uses: actions/checkout@v2
16+
#
17+
# - name: Install dependencies
18+
# run: |
19+
# sudo apt update -qq
20+
# sudo apt install -y make autoconf python3-sphinx
21+
#
22+
# - name: Make Documentation
23+
# run: |
24+
# cd Documentation
25+
# make html
26+
#
27+
# - name: Deploy to GitHub Pages
28+
# uses: crazy-max/ghaction-github-pages@v2
29+
# with:
30+
# target_branch: gh-pages
31+
# build_dir: Documentation/_build/html
32+
# jekyll: false

0 commit comments

Comments
 (0)