From 00d56ec9fc4ff0b90d5638489275b8a565aac22d Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Wed, 28 Jan 2026 17:12:30 -0700 Subject: [PATCH] hard fix --- .gitea/workflows/build-stable.yml | 11 +++++++++++ .gitea/workflows/build-unstable.yml | 11 +++++++++++ 2 files changed, 22 insertions(+) diff --git a/.gitea/workflows/build-stable.yml b/.gitea/workflows/build-stable.yml index 6234786..23ac0af 100644 --- a/.gitea/workflows/build-stable.yml +++ b/.gitea/workflows/build-stable.yml @@ -20,6 +20,17 @@ jobs: curl -fsSL https://deb.nodesource.com/setup_20.x | bash - apt install -y nodejs + - name: Disable any credential helper + run: | + git config --global --unset credential.helper || true + + - name: Remove stray http.extraheader entries + run: | + # List any that exist (for debugging) + git config --local --list | grep '^http\.https://git\.ahoneybun\.net/' + # Delete them if they exist + git config --local --unset-all "http.https://git.ahoneybun.net/.extraheader" || true + - name: Checkout uses: actions/checkout@v5 diff --git a/.gitea/workflows/build-unstable.yml b/.gitea/workflows/build-unstable.yml index 4b39b94..2d42a0a 100644 --- a/.gitea/workflows/build-unstable.yml +++ b/.gitea/workflows/build-unstable.yml @@ -20,6 +20,17 @@ jobs: curl -fsSL https://deb.nodesource.com/setup_20.x | bash - apt install -y nodejs + - name: Disable any credential helper + run: | + git config --global --unset credential.helper || true + + - name: Remove stray http.extraheader entries + run: | + # List any that exist (for debugging) + git config --local --list | grep '^http\.https://git\.ahoneybun\.net/' + # Delete them if they exist + git config --local --unset-all "http.https://git.ahoneybun.net/.extraheader" || true + - name: Checkout uses: actions/checkout@v5