Skip to content

Commit 2945a4f

Browse files
committed
Fix broken deploy pipeline check for -skipDeploy [skip ci]
1 parent 67c085f commit 2945a4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
fi
9999
100100
build_goals=()
101-
if [[ '${{ inputs.skip-deploy }}' ]]; then
101+
if [[ '${{ inputs.skip-deploy }}' = 'true' ]]; then
102102
build_goals+=("clean" "package" "javadoc:jar")
103103
build_goals+=("${build_args[@]}")
104104
else

0 commit comments

Comments
 (0)