From 7532d87892088123509482c5968d49eb2963886c Mon Sep 17 00:00:00 2001 From: tooomm Date: Sat, 24 Jan 2026 13:24:19 +0100 Subject: [PATCH] CI: Include submodules in repo checkout (Docs deployment) (#6557) * Enable submodule checkout in documentation build * Change submodule checkout to recursive --- .github/workflows/documentation-build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/documentation-build.yml b/.github/workflows/documentation-build.yml index 5933aba37..899c65c9c 100644 --- a/.github/workflows/documentation-build.yml +++ b/.github/workflows/documentation-build.yml @@ -19,6 +19,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v6 + with: + submodules: recursive - name: Install Doxygen and Graphviz run: sudo apt-get install -y doxygen graphviz