From f8037756c41af0b891012832a47e3826ad3fd93d Mon Sep 17 00:00:00 2001 From: Stern <70122891+SternXD@users.noreply.github.com> Date: Fri, 28 Jun 2024 05:29:14 -0400 Subject: [PATCH] Hopefully fix the cert issues with GitHub Actions. --- .github/workflows/winrt.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/winrt.yml b/.github/workflows/winrt.yml index 251bc7296f287..d6ae28270e61f 100644 --- a/.github/workflows/winrt.yml +++ b/.github/workflows/winrt.yml @@ -27,7 +27,7 @@ jobs: steps: - name: Checkout Repository uses: actions/checkout@v4 - + - name: Add MSBuild to PATH uses: microsoft/setup-msbuild@v2 @@ -49,9 +49,14 @@ jobs: - name: Extract some files run: 7z x pcsx2-windows-dependencies.7z -o"./" + - name: Setup certificate + run: | + echo ${{ secrets.XBSX2_TEMP_CERT_PFX }} | base64 -d > xbsx2-winrt_TemporaryKey.pfx + - name: Build project run: | msbuild PCSX2_qt.sln /m /p:PlatformToolset=v143 /p:Platform=x64 /p:Configuration="Release AVX2" /p:AppxPackageSigningEnabled=true /p:PackageCertificateKeyFile="xbsx2-winrt_TemporaryKey.pfx" /t:restore,build /p:RestorePackagesConfig=true + - name: Upload Builds uses: actions/upload-artifact@v4 with: