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.
1 parent c177856 commit d20318cCopy full SHA for d20318c
.github/workflows/git-artifacts.yml
@@ -418,6 +418,13 @@ jobs:
418
with:
419
name: arm64-artifacts
420
path: ${{github.workspace}}/arm64
421
+ # Workaround for Git Credential Manager Core on ARM64: https://github.com/git-for-windows/git/issues/3015
422
+ - name: Create git-credential-manager-core wrapper for ARM64
423
+ if: matrix.arch.arm64 == true
424
+ shell: bash
425
+ run: |
426
+ printf '%s\n' '#!/bin/sh' 'exec /mingw32/libexec/git-core/git-credential-manager-core.exe "$@"' > ${{github.workspace}}/arm64/bin/git-credential-manager-core
427
+ chmod +x ${{github.workspace}}/arm64/bin/git-credential-manager-core
428
- name: Clone and update build-extra
429
if: env.SKIP != 'true'
430
shell: bash
0 commit comments