diff --git a/.github/workflows/ci-installer.yml b/.github/workflows/ci-installer.yml index 432c5e59..19cd4bdd 100644 --- a/.github/workflows/ci-installer.yml +++ b/.github/workflows/ci-installer.yml @@ -11,9 +11,19 @@ on: branches: - master - release/* + workflow_dispatch: + inputs: + configuration: + description: 'Configuration' + required: true + default: 'Release' + type: choice + options: + - Release + - Debug env: - CONFIGURATION: 'Release' + CONFIGURATION: ${{ inputs.configuration != '' && inputs.configuration || 'Release' }} DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 DOTNET_NOLOGO: 1