Skip to content

Commit

Permalink
Introduce workflow_dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
sailro authored Apr 28, 2024
1 parent f32163b commit 41dc173
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/ci-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 41dc173

Please sign in to comment.