GRRLIB/.github/workflows/doc.yml

39 lines
864 B
YAML
Raw Normal View History

name: Documentation
on:
push:
branches:
- master
jobs:
doc:
name: Deploy documentation
2022-05-27 05:13:44 +00:00
runs-on: ubuntu-22.04
steps:
- name: Checkout the Git repository
2024-01-09 04:31:53 +00:00
uses: actions/checkout@v4
- name: Install doxygen
run: |
2024-01-09 04:31:53 +00:00
wget https://www.doxygen.nl/files/doxygen-1.10.0.linux.bin.tar.gz -O - | tar -xzv --directory=/tmp/
cd /tmp/doxygen-*
sudo make install
sudo apt-get update
sudo apt-get install doxygen-latex graphviz
2021-07-18 16:39:02 +00:00
- name: Generate documentation
run: |
doxygen grrlib.doxygen >/dev/null
make --directory=latex >/dev/null
touch html/.nojekyll
mv latex/refman.pdf html/PDF-documentation.pdf
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
2021-03-06 03:53:35 +00:00
branch: gh-pages
folder: html