Skip to content

Commit 6af97f9

Browse files
committed
cicd: Added tasks input to release workflow
1 parent 88d8125 commit 6af97f9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ on:
1010
description: 'Branch'
1111
default: 'master'
1212
required: true
13+
tasks:
14+
description: 'Tasks'
15+
default: 'build aggregateTestReports publish gitPublishPush'
16+
required: false
1317

1418
jobs:
1519
release:
@@ -18,7 +22,7 @@ jobs:
1822
with:
1923
branch: ${{ github.event.inputs.branch }}
2024
version: ${{ github.event.inputs.version }}
21-
tasks: build aggregateTestReports publish gitPublishPush
25+
tasks: ${{ github.event.inputs.tasks }}
2226
secrets:
2327
github-user: ${{ secrets.GIT_USER }}
2428
github-token: ${{ secrets.GIT_ACCESS_TOKEN }}

0 commit comments

Comments
 (0)