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 861d2f8 commit 0905e56Copy full SHA for 0905e56
.github/workflows/nightly.yml
@@ -47,11 +47,12 @@ jobs:
47
- name: Install dependencies
48
run: vcpkg install --triplet x64-windows
49
50
- - name: Download and install win64devkit
51
- shell: cmd
+ - name: Download win64devkit
+ run: |
52
+ Invoke-RestMethod "https://github.com/skeeto/w64devkit/archive/refs/tags/v2.2.0.zip" -OutFile 'w64devkit.zip'
53
+ - name: install win64devkit
54
run: |
- curl -L https://github.com/skeeto/w64devkit/archive/refs/tags/v2.2.0.zip --output w64devkit.zip
- Expand-Archive -force -Path w64devkit.zip -DestinationPath .
55
+ Expand-Archive ./w64devkit.zip -DestinationPath .
56
57
- name: Add w64devkit to PATH
58
0 commit comments