We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ead7ee commit 0c933c9Copy full SHA for 0c933c9
.github/workflows/main.yml
@@ -15,9 +15,14 @@ jobs:
15
with:
16
submodules: recursive
17
18
- - name: Fetch tags, needed for lib/SDL
+ - name: Fetch tags for lib/SDL
19
run: |
20
- git submodule foreach --recursive 'git fetch origin "refs/*:refs/*"'
+ # Unshallow a specific submodule (fetches full history)
21
+ cd lib/SDL
22
+ git fetch --unshallow origin
23
+ # Or fetch all refs without unshallowing (keeps it shallow but adds refs)
24
+ git fetch origin 'refs/*:refs/*'
25
+ cd ../..
26
27
- name: Install dependencies
28
0 commit comments