fix(windows): 🐛 allow scoop installation on CI

This commit is contained in:
Berkus Decker 2022-03-27 21:33:35 +03:00
parent eb4411bc97
commit 7eae2069b6
1 changed files with 2 additions and 1 deletions

View File

@ -87,7 +87,8 @@ jobs:
- name: Install Scoop (Windows)
run: |
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
iwr -useb get.scoop.sh -outfile 'install.ps1'
.\install.ps1 -RunAsAdmin
echo "$HOME\scoop\shims" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
if: runner.os == 'Windows'
shell: pwsh