Skip to content

Commit

Permalink
Update manual_generate_uwp.yml
Browse files Browse the repository at this point in the history
trying with signing
  • Loading branch information
anr2me authored Dec 27, 2023
1 parent f240e34 commit 8514d50
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/manual_generate_uwp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ on:
jobs:

build-uwp:
name: Generate ${{ github.event.inputs.buildConfiguration }} UWP
name: Generate ${{ github.event.inputs.buildConfiguration }} ${{ github.event.inputs.buildPlatform }} UWP
runs-on: windows-latest

steps:
Expand Down Expand Up @@ -61,20 +61,17 @@ jobs:
- name: Execute build
working-directory: ${{ github.workspace }}
run: msbuild /m /p:TrackFileAccess=false /p:Configuration=${{ github.event.inputs.buildConfiguration }} /p:Platform=${{ github.event.inputs.buildPlatform }} /p:AppxPackageSigningEnabled=false /p:AppxBundle=Always /p:UapAppxPackageBuildMode=SideloadOnly /p:AppxBundlePlatforms="${{ github.event.inputs.buildPlatform }}" UWP/PPSSPP_UWP.sln
run: msbuild UWP/PPSSPP_UWP.sln /m /p:TrackFileAccess=false /p:IncludeSymbols=${{ github.event.inputs.buildConfiguration == 'Debug' && 'true' || 'false' }} /p:Configuration=${{ github.event.inputs.buildConfiguration }} /p:Platform=${{ github.event.inputs.buildPlatform }} /p:AppxPackageSigningEnabled=true /p:PackageCertificateKeyFile=PPSSPP_UWP_TemporaryKey.pfx /p:AppxBundle=Never /p:UapAppxPackageBuildMode=SideloadOnly /p:AppxBundlePlatforms="${{ github.event.inputs.buildPlatform }}"

- name: Package build
working-directory: ${{ github.workspace }}
run: |
# Testing file location ...
#find . -name "PPSSPP*.exe"
#find . -name "*AppPackages"
#find . -name "*.appx*"
#find . -name "*.msix*"
mkdir ppsspp
#ls
#ls UWP
#ls UWP/AppPackages
#ls UWP/AppPackages/PPSSPP_UWP
cp -r UWP/AppPackages/PPSSPP_UWP/*.* ppsspp/
#ls ppsspp
Expand Down

0 comments on commit 8514d50

Please sign in to comment.