From 18abe94e7fbf72715909a1e846aa9a0795ded2fe Mon Sep 17 00:00:00 2001 From: Tyler Wilding Date: Mon, 19 Apr 2021 22:21:39 -0400 Subject: [PATCH] ci: Make acceptable values obvious --- .github/workflows/windows-workflow.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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