From 2c1c64049cfc2f05782cc2ba5197bd612666ee28 Mon Sep 17 00:00:00 2001 From: Nick Koirala Date: Tue, 11 Nov 2025 17:55:47 +1300 Subject: [PATCH] chore: fix action to pull submodules --- .gitea/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index b55c2c7..538e457 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -8,8 +8,13 @@ jobs: build-and-test: runs-on: ubuntu-latest steps: - - name: Check out repository + - name: Check out repository (with submodules) uses: actions/checkout@v4 + with: + # Ensure submodules (like external/angelscript and external/raylib) are checked out. + submodules: true + # Fetch full history so submodules can be cloned properly. + fetch-depth: 0 - name: Install system dependencies run: |