hard fix
This commit is contained in:
parent
14955dca21
commit
00d56ec9fc
2 changed files with 22 additions and 0 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue