Skip to content

Commit be50f4e

Browse files
committed
fix(ci): add CLI to release workflow dispatch inputs
- Add cli boolean input to workflow_dispatch - Include CLI in gha-scripts release command
1 parent 7162ef0 commit be50f4e

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/release.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
workflow_dispatch:
55
inputs:
66
api-recorder-extension: { type: boolean }
7+
cli: { type: boolean }
78
desktop: { type: boolean }
89
web: { type: boolean }
910

@@ -37,5 +38,6 @@ jobs:
3738
run: |
3839
gha-scripts release \
3940
${{ inputs.api-recorder-extension && 'api-recorder-extension' || '' }} \
41+
${{ inputs.cli && 'cli' || '' }} \
4042
${{ inputs.desktop && 'desktop' || '' }} \
4143
${{ inputs.web && 'web' || '' }} \

0 commit comments

Comments
 (0)