We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 83aba3f + 183352f commit 0f6d9adCopy full SHA for 0f6d9ad
.github/workflows/git-artifacts.yml
@@ -387,6 +387,13 @@ jobs:
387
with:
388
name: arm64-artifacts
389
path: ${{github.workspace}}/arm64
390
+ # Workaround for Git Credential Manager Core on ARM64: https://github.com/git-for-windows/git/issues/3015
391
+ - name: Create git-credential-manager-core wrapper for ARM64
392
+ if: matrix.arch.arm64 == true
393
+ shell: bash
394
+ run: |
395
+ printf '%s\n' '#!/bin/sh' 'exec /mingw32/libexec/git-core/git-credential-manager-core.exe "$@"' > arm64/bin/git-credential-manager-core
396
+ chmod +x arm64/bin/git-credential-manager-core
397
- name: Clone and update build-extra
398
if: env.SKIP != 'true'
399
shell: bash
0 commit comments