Skip to content

Commit 609fb73

Browse files
committed
ci: install using a different way
1 parent f49d7d7 commit 609fb73

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/release.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ jobs:
100100
os: windows-11-arm
101101
exe: ".exe"
102102
install: |
103-
iex "& { $(irm https://sh.rustup.rs) -y }"
103+
Invoke-WebRequest -Uri https://win.rustup.rs/aarch64 -OutFile rustup-init.exe
104+
Start-Process -FilePath .\rustup-init.exe -ArgumentList "-y" -NoNewWindow -Wait
104105
echo "$env:USERPROFILE\.cargo\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
105106
106107
echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append

0 commit comments

Comments
 (0)