diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6cf1d57..93e5785 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,9 +17,14 @@ jobs: - name: Configure Git Auth for Submodules run: | git config --global url."https://${{ github.token }}@git.neru.rip/".insteadOf "https://git.neru.rip/" + git config --global url."https://${{ github.token }}@git.neru.rip/".insteadOf "http://git.neru.rip/" + + git config --global url."https://${{ github.token }}@git.neru.rip/".insteadOf "git@git.neru.rip:" - name: Fetch Submodules - run: git submodule update --init --recursive + run: | + git submodule sync --recursive + git submodule update --init --recursive --force - name: Install cross-compilation tools run: |