We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8a3d70 commit 62b7895Copy full SHA for 62b7895
.github/workflows/build.yml
@@ -133,14 +133,10 @@ jobs:
133
HOMEBREW_NO_AUTO_UPDATE: 1
134
HOMEBREW_NO_BOTTLE_SOURCE_FALLBACK: 1
135
HOMEBREW_NO_INSTALL_CLEANUP: 1
136
- - name: Install Scoop (Windows)
137
- run: |
138
- Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
139
- echo "$HOME\scoop\shims" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
140
- if: runner.os == 'Windows'
141
- shell: pwsh
142
- name: Install QEMU (Windows)
143
- run: scoop install qemu
+ run: |
+ choco install qemu --version 2021.5.5
+ echo "$Env:Programfiles\qemu" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
144
if: runner.os == 'Windows'
145
shell: pwsh
146
0 commit comments