Skip to content

Commit e4f5e63

Browse files
committed
Merge pull request #3076 from dennisameling/git-credential-manager-core-arm64
git-artifacts: add workaround for GCM Core on ARM64
2 parents 42e0556 + 5cd8dc4 commit e4f5e63

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/git-artifacts.yml

+7
Original file line numberDiff line numberDiff line change
@@ -383,6 +383,13 @@ jobs:
383383
with:
384384
name: arm64-artifacts
385385
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
386393
- name: Clone and update build-extra
387394
if: env.SKIP != 'true'
388395
shell: bash

0 commit comments

Comments
 (0)