diff --git a/.github/actions/setup-win-arm64/action.yml b/.github/actions/setup-win-arm64/action.yml index 48578e0e..6949ee90 100644 --- a/.github/actions/setup-win-arm64/action.yml +++ b/.github/actions/setup-win-arm64/action.yml @@ -26,7 +26,7 @@ runs: "--add", "Microsoft.VisualStudio.Component.VC.Tools.x86.x64", ` "--add", "Microsoft.VisualStudio.Component.Windows11SDK.22000" ` -NoNewWindow -Wait - Remove-Item .\vs_buildtools.exe + - name: Install Git if: steps.cache-tools.outputs.cache-hit != 'true' @@ -35,7 +35,7 @@ runs: $url = "https://github.com/git-for-windows/git/releases/download/v2.41.0.windows.1/Git-2.41.0-64-bit.exe" Invoke-WebRequest -Uri $url -OutFile git-installer.exe Start-Process -FilePath .\git-installer.exe -ArgumentList "/VERYSILENT", "/NORESTART" -Wait - Remove-Item .\git-installer.exe + - name: Install Rust if: steps.cache-tools.outputs.cache-hit != 'true' @@ -44,7 +44,7 @@ runs: $url = "https://static.rust-lang.org/rustup/dist/aarch64-pc-windows-msvc/rustup-init.exe" Invoke-WebRequest -Uri $url -OutFile rustup-init.exe .\rustup-init.exe -y --default-host aarch64-pc-windows-msvc - Remove-Item .\rustup-init.exe + - name: Install NASM uses: ./.github/actions/install-nasm