Skip to content

Commit

Permalink
chore: Update buildwinrt.yml to include AVX2 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
SternXD committed Jul 28, 2024
1 parent fd9acfc commit 0467f71
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/buildwinrt.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build UWP Package
name: WinRT SSE4, AVX2 Builds
on:
push:
branches:
Expand Down Expand Up @@ -56,8 +56,16 @@ jobs:
- name: Build the project
run: msbuild PCSX2_qt.sln /m /p:PlatformToolset=v143 /t:Restore,Rebuild /p:Configuration="${{ matrix.configuration }}" /p:Platform=x64 /t:restore,build /p:RestorePackagesConfig=true

- name: Upload APPX file
- name: Upload APPX file (SSE4)
if: matrix.configuration == 'Release'
uses: actions/upload-artifact@v4
with:
name: appx-${{ matrix.configuration }}
path: "AppPackages\\xbsx2\\xbsx2_${{ steps.extract_version.outputs.version }}_x64_Test\\xbsx2_${{ steps.extract_version.outputs.version }}_x64.appx"
path: "AppPackages\\xbsx2\\xbsx2_${{ steps.extract_version.outputs.version }}_x64_Release_Test\\xbsx2_${{ steps.extract_version.outputs.version }}_x64.appx"

- name: Upload APPX file (AVX2)
if: matrix.configuration == 'Release AVX2'
uses: actions/upload-artifact@v4
with:
name: appx-${{ matrix.configuration }}
path: "AppPackages\\xbsx2\\xbsx2_${{ steps.extract_version.outputs.version }}_x64_Release AVX2_Test\\xbsx2_${{ steps.extract_version.outputs.version }}_x64.appx"

0 comments on commit 0467f71

Please sign in to comment.