From 8b43011fa1f0d8c0b6007f55483128335b03a33e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Fr=C3=B6jdh?= Date: Wed, 30 Oct 2024 15:37:23 +0100 Subject: [PATCH] modified action --- .github/workflows/build_docs.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_docs.yml b/.github/workflows/build_docs.yml index a5fc54f..0e0614f 100644 --- a/.github/workflows/build_docs.yml +++ b/.github/workflows/build_docs.yml @@ -32,10 +32,15 @@ jobs: channels: conda-forge - name: Prepare - run: conda install conda-build conda-verify pytest doxygen anaconda-client sphinx breathe pybind11 sphinx_rtd_theme nlohmann_json zeromq + run: conda install doxygen sphinx breathe pybind11 sphinx_rtd_theme furo nlohmann_json zeromq - name: Build library - run: mkdir build && cd build && cmake .. -DAARE_SYSTEM_LIBRARIES=ON -DAARE_DOCS=ON && make -j 2 && make docs + run: | + mkdir build + cd build + cmake .. -DAARE_SYSTEM_LIBRARIES=ON -DAARE_DOCS=ON + make -j 2 + make docs