mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-01-18 06:25:37 +00:00
CI: Fix incorrect operator
This commit is contained in:
parent
98a1d4fe99
commit
96f4fdf8d8
2
.github/workflows/rolling-release.yml
vendored
2
.github/workflows/rolling-release.yml
vendored
|
@ -186,7 +186,7 @@ jobs:
|
||||||
copy ${{ steps.write_signing_key.outputs.filePath }} src\duckstation-uwp\duckstation-uwp.pfx
|
copy ${{ steps.write_signing_key.outputs.filePath }} src\duckstation-uwp\duckstation-uwp.pfx
|
||||||
|
|
||||||
- name: Disable AppX signing
|
- 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
|
shell: powershell
|
||||||
run: |
|
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
|
(gc .\src\duckstation-uwp\duckstation-uwp.vcxproj) -replace '<AppxPackageSigningEnabled>True</AppxPackageSigningEnabled>', '<AppxPackageSigningEnabled>False</AppxPackageSigningEnabled>' | Out-File -encoding ASCII .\src\duckstation-uwp\duckstation-uwp.vcxproj
|
||||||
|
|
Loading…
Reference in a new issue