Skip to content

Commit dc76457

Browse files
committed
fixup! git-artifacts: add workaround for GCM Core on ARM64
We should not try to write that workaround if we're skipping the current matrix job... In that case, `arm64/` wouldn't exist, anyway... Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 1d7664e commit dc76457

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/git-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ jobs:
385385
path: ${{github.workspace}}/arm64
386386
# Workaround for Git Credential Manager Core on ARM64: https://github.com/git-for-windows/git/issues/3015
387387
- name: Create git-credential-manager-core wrapper for ARM64
388-
if: matrix.arch.arm64 == true
388+
if: env.SKIP != 'true' && matrix.arch.arm64 == true
389389
shell: bash
390390
run: |
391391
printf '%s\n' '#!/bin/sh' 'exec /mingw32/libexec/git-core/git-credential-manager-core.exe "$@"' > arm64/libexec/git-core/git-credential-manager-core

0 commit comments

Comments
 (0)