From edaf6e8fd680b6b53ab8acd86685acdfab92abed Mon Sep 17 00:00:00 2001 From: neru Date: Fri, 20 Mar 2026 21:21:17 -0300 Subject: [PATCH] fix: try to get auth --- .github/workflows/build.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a289590..e001196 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,9 +11,13 @@ jobs: build: runs-on: ubuntu-latest - steps: + steps: - uses: actions/checkout@v4 + - name: Configure Git Auth for Submodules + run: | + git config --global url."https://${{ github.token }}@git.neru.rip/".insteadOf "https://git.neru.rip/" + - name: Fetch Submodules run: git submodule update --init --recursive @@ -36,4 +40,3 @@ jobs: - name: Build Dumper (Windows) run: dotnet build src/dumper/dbd-dumper.csproj -c Release --runtime win-x64 - \ No newline at end of file