From e94b25f28c0bf3f212efe8de1515b1d402b89e96 Mon Sep 17 00:00:00 2001 From: neru Date: Fri, 20 Mar 2026 21:18:36 -0300 Subject: [PATCH] build: fetch submodules manually --- .github/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9aea337..a289590 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,8 +13,9 @@ jobs: steps: - uses: actions/checkout@v4 - with: - submodules: recursive + + - name: Fetch Submodules + run: git submodule update --init --recursive - name: Install cross-compilation tools run: |