Skip to content

Commit 8b8cd53

Browse files
authored
Merge pull request #3152 from dscho/fix-selective-arm64-git-artifacts
git-artifacts: don't add ARM64-specific workaround for GCM Core in skipped jobs
2 parents def4cfc + dc76457 commit 8b8cd53

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)