We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9965238 commit 7d9eaafCopy full SHA for 7d9eaaf
.github/workflows/main.yml
@@ -60,6 +60,12 @@ jobs:
60
shell: bash
61
run: tar xf artifacts.tar.gz && tar xf tracked.tar.gz
62
- uses: git-for-windows/setup-git-for-windows-sdk@v1
63
+ - name: replace the MSYS2 runtime
64
+ shell: powershell
65
+ run: |
66
+ Invoke-WebRequest -Headers @{ Authorization = "token ${{ secrets.GITHUB_TOKEN }}" } "https://api.github.com/repos/msys2/msys2-runtime/actions/artifacts/1082027388/zip" -outfile "a1.zip"
67
+ Expand-Archive -DestinationPath D:/git-sdk-64-minimal a1.zip
68
+ Remove-Item a1.zip
69
- name: test
70
71
run: . /etc/profile && ci/run-test-slice.sh ${{matrix.nr}} 10
0 commit comments