ci: Make acceptable values obvious

This commit is contained in:
Tyler Wilding 2021-04-19 22:21:39 -04:00 committed by lightningterror
parent 128eaf5790
commit 18abe94e7f
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ on:
workflow_dispatch: workflow_dispatch:
inputs: inputs:
retainDebugArtifacts: 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 required: true
default: 'false' default: 'false'
@ -73,7 +73,7 @@ jobs:
- name: Build PCSX2 - name: Build PCSX2
env: 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 # 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 }} run: msbuild "buildbot.xml" /m /v:n /t:ReleaseAll /p:Platform=${{ matrix.platform }}
- name: Prepare Artifact Metadata - name: Prepare Artifact Metadata