Skip to content

Commit

Permalink
Merge pull request #3152 from dscho/fix-selective-arm64-git-artifacts
Browse files Browse the repository at this point in the history
git-artifacts: don't add ARM64-specific workaround for GCM Core in skipped jobs
  • Loading branch information
dscho committed Mar 31, 2021
2 parents def4cfc + dc76457 commit 8b8cd53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/git-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ jobs:
path: ${{github.workspace}}/arm64
# Workaround for Git Credential Manager Core on ARM64: https://github.com/git-for-windows/git/issues/3015
- name: Create git-credential-manager-core wrapper for ARM64
if: matrix.arch.arm64 == true
if: env.SKIP != 'true' && matrix.arch.arm64 == true
shell: bash
run: |
printf '%s\n' '#!/bin/sh' 'exec /mingw32/libexec/git-core/git-credential-manager-core.exe "$@"' > arm64/libexec/git-core/git-credential-manager-core
Expand Down

0 comments on commit 8b8cd53

Please sign in to comment.