Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
0x5bfa committed Nov 1, 2023
1 parent 1476a72 commit 8ab0a44
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions .github/workflows/build-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ jobs:
fail-fast: false
matrix:
configuration: [Debug]
platform: [x64]
env:
CONFIGURATION: ${{ matrix.configuration }}

Expand All @@ -124,12 +125,22 @@ jobs:
- name: Install package
shell: pwsh
run: |
cd "$env:APPX_PACKAGE_DIR"
# Go to generated appx packge dir
Set-Location "$env:APPX_PACKAGE_DIR"
# Get bundle dir
$AppxPackageBundleDir = Get-ChildItem -Filter "Files.Package_*_$env:CONFIGURATION_Test" -Name
echo $AppxPackageBundleDir
cd $AppxPackageBundleDir
ls
Write-Output $AppxPackageBundleDir
# Go to bundle dir
Set-Location $AppxPackageBundleDir
Get-ChildItem
# Install the package
./Install.ps1 -Force
Get-AppxPackage
- name: Set full HD resolution
Expand Down

0 comments on commit 8ab0a44

Please sign in to comment.