We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 42e0556 + 5cd8dc4 commit e4f5e63Copy full SHA for e4f5e63
.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