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 c738d95 commit b5f5f37
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,11 @@ jobs:
if: matrix.os == 'windows-11-preview_aarch64'
shell: powershell
run: |
$env:ARCH = (${{matrix.os}} -replace "aarch64", "arm64" -replace "i686", "x86" -split '-' | Select-Object -First 1)
$env:ARCH = "x86_64-pc-windows-msvc" `
-replace 'x86_64', 'x64' `
-replace 'aarch64', 'arm64' `
-replace 'i686', 'x86' `
-split '-' | Select-Object -First 1
Write-Host $env:ARCH
Add-AppxPackage "deps/$env:ARCH/Microsoft.VCLibs.140.00.UWPDesktop_14.0.33728.0_$env:ARCH__8wekyb3d8bbwe.Appx"
Add-AppxPackage "deps/$env:ARCH/Microsoft.UI.Xaml.2.8_8.2310.30001.0_$env:ARCH__8wekyb3d8bbwe.Appx"
Expand Down

0 comments on commit b5f5f37

Please sign in to comment.