From 3b63332f9ad87df72d1d07cdb5eb052819c0ac51 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Wed, 16 Dec 2020 18:46:40 +0100 Subject: [PATCH] ci: "Ninja Multi-Config" set as a CMake generator for documenation generator workflow --- .github/workflows/documentation.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index afa560bc..0141fedc 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -76,11 +76,11 @@ jobs: - name: Configure CMake run: | cd build - cmake .. + cmake .. -G "Ninja Multi-Config" - name: Generate documentation run: | cd build - cmake --build . --target sphinx + cmake --build . --target sphinx --config Release - name: Deploy documentation if: github.ref == 'refs/heads/master' uses: peaceiris/actions-gh-pages@v3