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 929ea26 commit b55101c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ jobs:
shell: powershell
run: |
$progressPreference = 'silentlyContinue'
$packages = @(
'https://aka.ms/Microsoft.VCLibs.arm64.14.00.Desktop.appx',
$package = '${{github.workspace}}/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle';
$deps = @(
'${{github.workspace}}/Microsoft.UI.Xaml.2.8.arm64.appx',
'${{github.workspace}}/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle'
'https://aka.ms/Microsoft.VCLibs.arm64.14.00.Desktop.appx'
)
Write-Host "Installing Microsoft.DesktopAppInstaller from $($packages[2])..."
Add-AppxPackage -Path $packages[2] -DependencyPath $packages[0],$packages[1]
Write-Host "Installing Microsoft.DesktopAppInstaller from "
Add-AppxPackage -Path $package -DependencyPath $deps
Repair-WinGetPackageManager -IncludePrerelease
winget install nushell --accept-package-agreements --accept-source-agreements
Expand Down

0 comments on commit b55101c

Please sign in to comment.