CI: Fix incorrect operator

This commit is contained in:
Connor McLaughlin 2021-10-20 02:07:17 +10:00 committed by GitHub
parent 98a1d4fe99
commit 96f4fdf8d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -186,7 +186,7 @@ jobs:
copy ${{ steps.write_signing_key.outputs.filePath }} src\duckstation-uwp\duckstation-uwp.pfx
- name: Disable AppX signing
if: github.ref != 'refs/heads/master' || github.ref != 'refs/heads/dev'
if: github.ref != 'refs/heads/master' && github.ref != 'refs/heads/dev'
shell: powershell
run: |
(gc .\src\duckstation-uwp\duckstation-uwp.vcxproj) -replace '<AppxPackageSigningEnabled>True</AppxPackageSigningEnabled>', '<AppxPackageSigningEnabled>False</AppxPackageSigningEnabled>' | Out-File -encoding ASCII .\src\duckstation-uwp\duckstation-uwp.vcxproj