Skip to content

Commit

Permalink
cicd: Added tasks input to release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jruaux committed May 14, 2024
1 parent 88d8125 commit 6af97f9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
description: 'Branch'
default: 'master'
required: true
tasks:
description: 'Tasks'
default: 'build aggregateTestReports publish gitPublishPush'
required: false

jobs:
release:
Expand All @@ -18,7 +22,7 @@ jobs:
with:
branch: ${{ github.event.inputs.branch }}
version: ${{ github.event.inputs.version }}
tasks: build aggregateTestReports publish gitPublishPush
tasks: ${{ github.event.inputs.tasks }}
secrets:
github-user: ${{ secrets.GIT_USER }}
github-token: ${{ secrets.GIT_ACCESS_TOKEN }}
Expand Down

0 comments on commit 6af97f9

Please sign in to comment.