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 1725876 commit c3c3ad5
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,16 @@ jobs:
shell: powershell
run: |
$progressPreference = 'silentlyContinue'
@(
@{ Url = 'https://aka.ms/Microsoft.VCLibs.arm64.14.00.Desktop.appx' },
@{ Url = '${{github.workspace}}/Microsoft.UI.Xaml.2.8.arm64.appx' },
@{ Url = '${{github.workspace}}/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle' }
) | ForEach-Object {
Write-Host "Installing package from `$_.Url`..."
Add-AppxPackage -Path $_.Url
$packages = @(
'https://aka.ms/Microsoft.VCLibs.arm64.14.00.Desktop.appx',
'${{github.workspace}}/Microsoft.UI.Xaml.2.8.arm64.appx',
'${{github.workspace}}/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle'
)
$packages | ForEach-Object {
$url = $_;
Write-Host "Installing package from $url..."
Add-AppxPackage -Path $url
}
Repair-WinGetPackageManager -IncludePrerelease
Expand Down

0 comments on commit c3c3ad5

Please sign in to comment.