From 9b72dd60b6446762b311e76e6a1ba40f724d80a5 Mon Sep 17 00:00:00 2001 From: Arthur Blot Date: Fri, 20 May 2022 22:10:13 +0200 Subject: [PATCH] Fix building documentation in CI --- .github/workflows/main.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8594fae..c6f5f44 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,6 +20,14 @@ jobs: steps: - name: Checkout 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 if: github.ref == 'refs/heads/master' uses: JamesIves/github-pages-deploy-action@4.1.0