1
0
Fork 0
mirror of https://github.com/GRRLIB/GRRLIB.git synced 2025-03-21 10:28:59 +00:00
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 01:13:44 -04:00
runs-on: ubuntu-22.04
steps:
- name: Checkout the Git repository
2024-01-08 23:31:53 -05:00
uses: actions/checkout@v4
- name: Install doxygen
run: |
2025-01-04 20:50:57 -05:00
wget https://www.doxygen.nl/files/doxygen-1.13.2.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 12:39:02 -04: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-05 22:53:35 -05:00
branch: gh-pages
folder: html