From 0467f71a9b5f44be7ac7e42481f4864810033088 Mon Sep 17 00:00:00 2001 From: Stern <70122891+SternXD@users.noreply.github.com> Date: Sun, 28 Jul 2024 14:03:32 -0400 Subject: [PATCH] chore: Update buildwinrt.yml to include AVX2 builds --- .github/workflows/buildwinrt.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/buildwinrt.yml b/.github/workflows/buildwinrt.yml index e2e3f447e57ed..425cdecab651f 100644 --- a/.github/workflows/buildwinrt.yml +++ b/.github/workflows/buildwinrt.yml @@ -1,4 +1,4 @@ -name: Build UWP Package +name: WinRT SSE4, AVX2 Builds on: push: branches: @@ -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"