Skip to content

Commit

Permalink
Update build process to use Windows Kit path with makeappx.exe
Browse files Browse the repository at this point in the history
  • Loading branch information
Thavarshan committed Aug 31, 2024
1 parent f354879 commit 7727655
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- name: Find Windows Kit Path
run: |
$windowsKitPath = (Get-ChildItem "C:\Program Files (x86)\Windows Kits\10\bin" -Recurse -Directory | Where-Object { $_.Name -match "x64" }).FullName
$windowsKitPath = (Get-ChildItem "C:\Program Files (x86)\Windows Kits\10\bin" -Recurse -Directory | Where-Object { Test-Path "$($_.FullName)\makeappx.exe" }).FullName
echo "WINDOWS_KIT_PATH=$windowsKitPath" >> $GITHUB_ENV
shell: pwsh

Expand Down

0 comments on commit 7727655

Please sign in to comment.