From be6be711fff23278f91e2cbef503e847a83928b0 Mon Sep 17 00:00:00 2001 From: Bruno Alexandre Rosa <1791393+brunoalr@users.noreply.github.com> Date: Sat, 28 Mar 2026 13:47:33 -0300 Subject: [PATCH] checkout only thirdparty submodules --- .github/workflows/desktop-build.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/desktop-build.yml b/.github/workflows/desktop-build.yml index 6ca9cfa2c..51ec7265c 100644 --- a/.github/workflows/desktop-build.yml +++ b/.github/workflows/desktop-build.yml @@ -162,8 +162,11 @@ jobs: steps: - name: Checkout uses: actions/checkout@v6 - with: - submodules: recursive + + - name: Checkout thirdparty submodules + run: | + git submodule init thirdparty + git submodule update thirdparty - name: Restore compiler cache (ccache) id: ccache_restore