Skip to content

Commit f228d86

Browse files
committed
Fix(CI): Install Dependencies
1 parent 8650bf2 commit f228d86

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,14 @@ jobs:
4343
# so we delete everything that could mess up our builds
4444
run: rmdir /S /Q C:\Strawberry
4545

46-
- name: Install Winget
46+
- name: Install Winget Dependencies (ARM64)
4747
if: contains(matrix.arch, 'arm64')
48-
run: Add-AppxPackage -RegisterByFamilyName -MainPackage Microsoft.DesktopAppInstaller_8wekyb3d8bbwe
48+
run: |
49+
Invoke-WebRequest -Uri https://github.com/microsoft/microsoft-ui-xaml/releases/download/v2.8.6/Microsoft.UI.Xaml.2.8.arm64.appx -OutFile $env:TEMP\Microsoft.UI.Xaml.2.8.arm64.appx
50+
Add-AppxPackage $env:TEMP\Microsoft.UI.Xaml.2.8.arm64.appx
4951
shell: pwsh
5052

51-
- name: Update Winget
53+
- name: Install Winget
5254
if: contains(matrix.arch, 'arm64')
5355
run: Add-AppPackage https://aka.ms/GetWinGet
5456
shell: pwsh

0 commit comments

Comments
 (0)