diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9e68475ee..60b37a5f4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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