We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1b43510 + 002606e commit 9ccd9eaCopy full SHA for 9ccd9ea
.github/workflows/git-artifacts.yml
@@ -383,6 +383,13 @@ jobs:
383
with:
384
name: arm64-artifacts
385
path: ${{github.workspace}}/arm64
386
+ # Workaround for Git Credential Manager Core on ARM64: https://github.com/git-for-windows/git/issues/3015
387
+ - name: Create git-credential-manager-core wrapper for ARM64
388
+ if: env.SKIP != 'true' && matrix.arch.arm64 == true
389
+ shell: bash
390
+ run: |
391
+ printf '%s\n' '#!/bin/sh' 'exec /mingw32/libexec/git-core/git-credential-manager-core.exe "$@"' > arm64/libexec/git-core/git-credential-manager-core
392
+ chmod +x arm64/libexec/git-core/git-credential-manager-core
393
- name: Clone and update build-extra
394
if: env.SKIP != 'true'
395
shell: bash
0 commit comments