Skip to content

Commit

Permalink
Update action.yml
Browse files Browse the repository at this point in the history
WOA setup: Don't try do delete installers after
  • Loading branch information
lilith authored Oct 30, 2024
1 parent 24ce9d9 commit a64929e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/setup-win-arm64/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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'
Expand All @@ -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
Expand Down

0 comments on commit a64929e

Please sign in to comment.