We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9aee2e4 + 2127d7c commit 41f27ccCopy full SHA for 41f27cc
1 file changed
action.yml
@@ -55,8 +55,8 @@ runs:
55
echo -e "ERROR: 571 - mono-repo-product-name must be set and NOT null!"
56
exit 1 || true
57
fi
58
- [[ -n "${{ inputs.mono-repo-product-name }}" ]] && opt='$opt -n ${{ inputs.mono-repo-product-name }}'
59
- [[ -n "${{ inputs.mono-repo-product-path }}" ]] && opt='$opt -d ${{ inputs.mono-repo-product-path }}'
+ [[ "${{ inputs.mono-repo-product-name }}" != "" ]] && opt='$opt -n ${{ inputs.mono-repo-product-name }}'
+ [[ "${{ inputs.mono-repo-product-path }}" != "" ]] && opt='$opt -d ${{ inputs.mono-repo-product-path }}'
60
new_version="$(${{ github.action_path }}/scripts/detectNewVersion.sh $opt)" || true
61
echo "new-version=$new_version" | tee $GITHUB_OUTPUT
62
if [[ "$new_version" =~ "520" ]]; then
0 commit comments