From 89e5c6d20fae7949a1565b94d67c57d743012451 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rimas=20Misevi=C4=8Dius?= Date: Tue, 30 Jan 2024 23:40:49 +0200 Subject: [PATCH] Use ssciwr/doxygen-install action to install doxygen 1.9.8 and then run it --- .github/workflows/documentation.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index a76fa77..4c79541 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -26,10 +26,14 @@ jobs: cmake -S . -B build -DCMAKE_CXX_COMPILER=g++ -DCMAKE_CXX_STANDARD=20 -DURL_BUILD_TESTS=OFF -DURL_BUILD_EXTRACTED=ON cmake --build build - # Run doxygen + # Install and run doxygen - name: Download theme run: doc/download-theme.sh - - uses: mattnotmitt/doxygen-action@edge + - uses: ssciwr/doxygen-install@v1 + with: + version: "1.9.8" + - name: Run doxygen + run: /usr/local/bin/doxygen # Deploy docs - name: Is there a gh-pages branch?