File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -27,12 +27,18 @@ jobs:
27
27
steps :
28
28
- uses : actions/checkout@v3
29
29
- uses : git-for-windows/setup-git-for-windows-sdk@v1
30
+ - name : replace the MSYS2 runtime
31
+ shell : powershell
32
+ run : |
33
+ Invoke-WebRequest -Headers @{ Authorization = "token ${{ secrets.GITHUB_TOKEN }}" } "https://api.github.com/repos/msys2/msys2-runtime/actions/artifacts/1082027388/zip" -outfile "a1.zip"
34
+ Expand-Archive -DestinationPath D:/git-sdk-64-minimal a1.zip
35
+ Remove-Item a1.zip
30
36
- name : build
31
37
shell : bash
32
38
env :
33
39
HOME : ${{runner.workspace}}
34
40
NO_PERL : 1
35
- run : . /etc/profile && ci/make-test-artifacts.sh artifacts
41
+ run : uname -a && . /etc/profile && ci/make-test-artifacts.sh artifacts
36
42
- name : zip up tracked files
37
43
run : git archive -o artifacts/tracked.tar.gz HEAD
38
44
- name : upload tracked files and build artifacts
You can’t perform that action at this time.
0 commit comments