Skip to content

Commit 9ef2cd9

Browse files
committed
Fix publish-plugins any output (ToLower was outside the subexpression)
1 parent 17a96cc commit 9ef2cd9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/publish-plugins.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
148148
"selected=$($selected -join ',')" >> $env:GITHUB_OUTPUT
149149
"version=$version" >> $env:GITHUB_OUTPUT
150-
"any=$([bool]($selected.Count -gt 0)).ToString().ToLower()" >> $env:GITHUB_OUTPUT
150+
"any=$(($selected.Count -gt 0).ToString().ToLower())" >> $env:GITHUB_OUTPUT
151151
152152
# Everything below is a no-op when nothing was selected — saves
153153
# restore/build time on branch pushes that didn't touch a plugin.

0 commit comments

Comments
 (0)