Skip to content

Commit a64929e

Browse files
authored
Update action.yml
WOA setup: Don't try do delete installers after
1 parent 24ce9d9 commit a64929e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/actions/setup-win-arm64/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ runs:
2626
"--add", "Microsoft.VisualStudio.Component.VC.Tools.x86.x64", `
2727
"--add", "Microsoft.VisualStudio.Component.Windows11SDK.22000" `
2828
-NoNewWindow -Wait
29-
Remove-Item .\vs_buildtools.exe
29+
3030
3131
- name: Install Git
3232
if: steps.cache-tools.outputs.cache-hit != 'true'
@@ -35,7 +35,7 @@ runs:
3535
$url = "https://github.com/git-for-windows/git/releases/download/v2.41.0.windows.1/Git-2.41.0-64-bit.exe"
3636
Invoke-WebRequest -Uri $url -OutFile git-installer.exe
3737
Start-Process -FilePath .\git-installer.exe -ArgumentList "/VERYSILENT", "/NORESTART" -Wait
38-
Remove-Item .\git-installer.exe
38+
3939
4040
- name: Install Rust
4141
if: steps.cache-tools.outputs.cache-hit != 'true'
@@ -44,7 +44,7 @@ runs:
4444
$url = "https://static.rust-lang.org/rustup/dist/aarch64-pc-windows-msvc/rustup-init.exe"
4545
Invoke-WebRequest -Uri $url -OutFile rustup-init.exe
4646
.\rustup-init.exe -y --default-host aarch64-pc-windows-msvc
47-
Remove-Item .\rustup-init.exe
47+
4848
4949
- name: Install NASM
5050
uses: ./.github/actions/install-nasm

0 commit comments

Comments
 (0)