From 41dc173e55691bbbbec9cb4fe0d521bca655ed74 Mon Sep 17 00:00:00 2001 From: Sebastien Lebreton Date: Sun, 28 Apr 2024 17:53:34 +0200 Subject: [PATCH] Introduce workflow_dispatch --- .github/workflows/ci-installer.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) 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