Skip to content

Commit

Permalink
fix(release): handle multi word component name
Browse files Browse the repository at this point in the history
  • Loading branch information
tuntoja authored Jun 14, 2024
1 parent 1ea67d2 commit ea618e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-trigger-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ jobs:
if [[ "${{ inputs.dispatch_content }}" == "FULL" ]]; then
echo "Requested ${{ inputs.dispatch_content }} content, triggering all component workflows."
for COMPONENT in ${COMPONENTS_COLLECT_FULL[@]}; do
gh workflow run $COMPONENT -r ${{ inputs.dispatch_target_release_branch }}
gh workflow run "$COMPONENT" -r ${{ inputs.dispatch_target_release_branch }}
done
else
echo "Requested ${{ inputs.dispatch_content }} content, triggering centreon named components only."
for COMPONENT in ${COMPONENTS_COLLECT[@]}; do
gh workflow run $COMPONENT -r ${{ inputs.dispatch_target_release_branch }}
gh workflow run "$COMPONENT" -r ${{ inputs.dispatch_target_release_branch }}
done
fi
Expand Down

0 comments on commit ea618e3

Please sign in to comment.