From 6fbf4db53700de42d7b3dc5c2f6cc20dcf1628c3 Mon Sep 17 00:00:00 2001 From: Simon Baynes Date: Tue, 6 Aug 2024 09:58:56 +0100 Subject: [PATCH] Migrate documentation generation action The current version of https://github.com/DenverCoder1/doxygen-github-pages-action only supports version doxygen version 1.9.1 which has a bug doxygen/doxygen#9317 where file scoped namespaces are not supported. I have forked the repo at https://github.com/baynezy/doxygen-github-pages-action and modified it to install any version I want. Closes #444 --- .github/workflows/publish-docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index 0e5eca29..fb483d8d 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest environment: github-pages steps: - - uses: DenverCoder1/doxygen-github-pages-action@v1.3.0 + - uses: baynezy/doxygen-github-pages-action@feature/specific-version with: github_token: ${{ secrets.PUBLISH_DOCS_TOKEN }} branch: gh-pages