Fix building documentation in CI

This commit is contained in:
Arthur Blot 2022-05-20 22:10:13 +02:00
parent dd1dc842f6
commit 9b72dd60b6

View File

@ -20,6 +20,14 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt-get install doxygen
- name: Build documentation
run: |
mkdir github-pages
cd github-pages
doxygen ../docs/Doxyfile
- name: Deploy documentation - name: Deploy documentation
if: github.ref == 'refs/heads/master' if: github.ref == 'refs/heads/master'
uses: JamesIves/github-pages-deploy-action@4.1.0 uses: JamesIves/github-pages-deploy-action@4.1.0