fix: handle submodules manually on Windows to avoid path issue

This commit is contained in:
litruv
2026-02-21 17:57:32 +11:00
parent 7508ebacab
commit 1e455a00f2

View File

@@ -64,9 +64,14 @@ jobs:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
submodules: recursive submodules: false
ref: ${{ github.ref_name }} ref: ${{ github.ref_name }}
- name: Checkout submodules manually
shell: powershell
run: |
git submodule update --init --recursive
- name: Pull latest (after version bump) - name: Pull latest (after version bump)
if: github.ref == 'refs/heads/main' if: github.ref == 'refs/heads/main'
shell: powershell shell: powershell