Skip to content

Commit

Permalink
(chore:) add single quotes to matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
SternXD committed Jul 28, 2024
1 parent 2631443 commit fd9acfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/buildwinrt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
configuration: [Release, Release AVX2]
configuration: ['Release', 'Release AVX2']

steps:
- name: Checkout repository
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
run: 7z x pcsx2-windows-dependencies.7z -o"./"

- 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
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
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit fd9acfc

Please sign in to comment.