From 0c933c952c23761bf223ce0523a467f319d9e034 Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Fri, 24 Oct 2025 18:23:22 +0200 Subject: [PATCH] Only SDL --- .github/workflows/main.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cb1c1b42..ce6254c0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,9 +15,14 @@ jobs: with: submodules: recursive - - name: Fetch tags, needed for lib/SDL + - name: Fetch tags for lib/SDL run: | - git submodule foreach --recursive 'git fetch origin "refs/*:refs/*"' + # Unshallow a specific submodule (fetches full history) + cd lib/SDL + git fetch --unshallow origin + # Or fetch all refs without unshallowing (keeps it shallow but adds refs) + git fetch origin 'refs/*:refs/*' + cd ../.. - name: Install dependencies run: |