Skip to content

Commit

Permalink
chore: use nushell in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
oberrich committed Jan 10, 2025
1 parent 18ff555 commit 1f71b64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
if: matrix.os == 'windows-11-preview_aarch64'
shell: powershell
run: |
Start-Process -FilePath "https://aka.ms/vs/16/release/vc_redist.arm64.exe" -ArgumentList "/quiet", "/norestart" -Wait
Start-Process -FilePath (Invoke-WebRequest -Uri "https://aka.ms/vs/16/release/vc_redist.arm64.exe" -OutFile "$env:RUNNER_TEMP\vc_redist.arm64.exe"; "$env:RUNNER_TEMP\vc_redist.arm64.exe") -ArgumentList "/quiet", "/norestart" -Wait
Add-AppxPackage ${{github.workspace}}\Microsoft.UI.Xaml.2.8.arm64.appx
Write-Host "Starting package installation for Microsoft.DesktopAppInstaller_8wekyb3d8bbwe"
$msixBundlePath = "${{github.workspace}}\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle"
Expand Down

0 comments on commit 1f71b64

Please sign in to comment.