From 1e455a00f2fb9ded0128da1c95d72229512636e2 Mon Sep 17 00:00:00 2001 From: litruv Date: Sat, 21 Feb 2026 17:57:32 +1100 Subject: [PATCH] fix: handle submodules manually on Windows to avoid path issue --- .gitea/workflows/build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index b698485..6f8322b 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -64,9 +64,14 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 with: - submodules: recursive + submodules: false ref: ${{ github.ref_name }} + - name: Checkout submodules manually + shell: powershell + run: | + git submodule update --init --recursive + - name: Pull latest (after version bump) if: github.ref == 'refs/heads/main' shell: powershell