From 2c60ab2360aa04108fc83ce79f4d712c27084edd Mon Sep 17 00:00:00 2001 From: neru Date: Fri, 20 Mar 2026 21:25:24 -0300 Subject: [PATCH] build: try more auth stuff --- .github/workflows/build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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: |