Add symbols to Windows build packaging

This commit is contained in:
hspir404 2025-01-05 14:13:53 -08:00
parent 421e728198
commit eff0d9358a

View File

@ -94,11 +94,18 @@ jobs:
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --parallel $env:NUMBER_OF_PROCESSORS
- name: Deploy and Package
run: |
mkdir upload
move build/shadPS4.exe upload
move build/shadPS4.pdb upload
Compress-Archive -Path upload/* -DestinationPath shadps4-win64-sdl-${{ needs.get-info.outputs.date }}-${{ needs.get-info.outputs.shorthash }}.zip
- name: Upload Windows SDL artifact
uses: actions/upload-artifact@v4
with:
name: shadps4-win64-sdl-${{ needs.get-info.outputs.date }}-${{ needs.get-info.outputs.shorthash }}
path: ${{github.workspace}}/build/shadPS4.exe
path: upload/
windows-qt:
runs-on: windows-latest
@ -152,6 +159,7 @@ jobs:
run: |
mkdir upload
move build/shadPS4.exe upload
move build/shadPS4.pdb upload
windeployqt --no-compiler-runtime --no-system-d3d-compiler --no-system-dxc-compiler --dir upload upload/shadPS4.exe
Compress-Archive -Path upload/* -DestinationPath shadps4-win64-qt-${{ needs.get-info.outputs.date }}-${{ needs.get-info.outputs.shorthash }}.zip