diff --git a/.github/workflows/windows-workflow.yml b/.github/workflows/windows-workflow.yml index 98a55d300b..357601255f 100644 --- a/.github/workflows/windows-workflow.yml +++ b/.github/workflows/windows-workflow.yml @@ -26,7 +26,7 @@ on: workflow_dispatch: inputs: retainDebugArtifacts: - description: 'Retain debug artifacts (.pdb/.exp/.lib) for an easier debugging experience' + description: 'Retain debug artifacts (.pdb/.exp/.lib) for an easier debugging experience. (true|false)' required: true default: 'false' @@ -73,7 +73,7 @@ jobs: - name: Build PCSX2 env: # Set to 'true' to retain the .pdb / .exp / .lib, etc files which can be useful for repro'ing issues that only occur in the compiled .exe - RetainDebuggingArtifacts: "${{ github.event.inputs.retainDebugArtifacts == 'true' }}" + RetainDebuggingArtifacts: ${{ github.event.inputs.retainDebugArtifacts == 'true' }} run: msbuild "buildbot.xml" /m /v:n /t:ReleaseAll /p:Platform=${{ matrix.platform }} - name: Prepare Artifact Metadata