We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f49d7d7 commit 609fb73Copy full SHA for 609fb73
1 file changed
.github/workflows/release.yaml
@@ -100,7 +100,8 @@ jobs:
100
os: windows-11-arm
101
exe: ".exe"
102
install: |
103
- iex "& { $(irm https://sh.rustup.rs) -y }"
+ Invoke-WebRequest -Uri https://win.rustup.rs/aarch64 -OutFile rustup-init.exe
104
+ Start-Process -FilePath .\rustup-init.exe -ArgumentList "-y" -NoNewWindow -Wait
105
echo "$env:USERPROFILE\.cargo\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
106
107
echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
0 commit comments