Skip to content

Commit

Permalink
Update CI.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
taori authored Aug 28, 2024
1 parent 5193147 commit b8176ac
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,6 @@ jobs:
$commitMode = "pushMerge" }
if($commitMode -eq "noop" && "$branch|push" -eq "${{github.ref_name}}|${{github.event_name}}") {
$commitMode = "push" }
echo "Identified commit mode $commitMode" >> $env:GITHUB_STEP_SUMMARY
exit 1;
$data = @{ #prefix #suffix #configuration #verbosity #publish #removeprerelease
"dispatch" = @("$prefix", "$suffix", "$conf", "$verb", "$publ", "$removePrereleases")
Expand Down Expand Up @@ -156,6 +153,11 @@ jobs:
echo "$item=$($data[$commitMode][$index])" >> $env:GITHUB_OUTPUT
echo "$item=$($data[$commitMode][$index])" >> $env:GITHUB_STEP_SUMMARY
}
echo "Identified commit mode $commitMode" >> $env:GITHUB_STEP_SUMMARY
if($commitMode -eq "noop") {
exit 1;
}
package:
needs: parameters
Expand Down

0 comments on commit b8176ac

Please sign in to comment.