We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb73508 commit e3366d1Copy full SHA for e3366d1
.github/workflows/build.yaml
@@ -52,6 +52,8 @@ jobs:
52
github-token: ${{ secrets.GITHUB_TOKEN }}
53
repository: ${{ github.repository }}
54
- name: get latest successful ci-artifacts run
55
+ # Cannot just grab from https://github.com/git-for-windows/git-sdk-64/releases/tag/ci-artifacts
56
+ # because we also need the git-artifacts
57
id: ci-artifacts-run-id
58
uses: actions/github-script@v7
59
with:
@@ -90,7 +92,7 @@ jobs:
90
92
mkdir minimal-sdk &&
91
93
cd minimal-sdk &&
94
tar xzf ../git-sdk-x86_64-minimal.tar.gz &&
- tar -C ../install cf - . | tar xf - &&
95
+ tar -C ../install -cf - . | tar xf - &&
96
tar cvf - * .[0-9A-Za-z]* | gzip -1 >../git-sdk-x86_64-minimal.tar.gz
97
- name: upload minimal-sdk artifact
98
uses: actions/upload-artifact@v4
0 commit comments