hard fix
Some checks failed
nix docker build stable / amd64 (pull_request) Failing after 29s
nix docker build unstable / amd64 (pull_request) Failing after 29s

This commit is contained in:
Aaron Honeycutt 2026-01-28 17:12:30 -07:00
parent 14955dca21
commit 00d56ec9fc
2 changed files with 22 additions and 0 deletions

View file

@ -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

View file

@ -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