From a64929ef5b8de318a2b9f49e6da91a2eb0bb8b1b Mon Sep 17 00:00:00 2001 From: Lilith River Date: Wed, 30 Oct 2024 03:22:09 -0700 Subject: [PATCH] Update action.yml WOA setup: Don't try do delete installers after --- .github/actions/setup-win-arm64/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/setup-win-arm64/action.yml b/.github/actions/setup-win-arm64/action.yml index 48578e0ee..6949ee90c 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