2020-01-26 17:37:39 +00:00
|
|
|
name: Documentation
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
doc:
|
|
|
|
name: Deploy documentation
|
2020-10-17 01:36:22 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2020-01-26 17:37:39 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: Checkout the Git repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Install doxygen
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install doxygen doxygen-latex graphviz
|
|
|
|
|
|
|
|
- name: Generate documentaion
|
|
|
|
run: |
|
|
|
|
doxygen grrlib.doxygen >/dev/null
|
|
|
|
make --directory=latex >/dev/null
|
|
|
|
touch doc/.nojekyll
|
|
|
|
mv latex/refman.pdf doc/PDF-documentation.pdf
|
|
|
|
|
|
|
|
- name: Deploy to GitHub Pages
|
2020-10-17 01:36:22 +00:00
|
|
|
uses: JamesIves/github-pages-deploy-action@3.6.2
|
|
|
|
with:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
BRANCH: gh-pages
|
|
|
|
FOLDER: doc
|