File tree 1 file changed +4
-12
lines changed
1 file changed +4
-12
lines changed Original file line number Diff line number Diff line change @@ -49,18 +49,10 @@ runs:
49
49
run : |
50
50
cd $GITHUB_WORKSPACE
51
51
opt=''
52
- [[ "${{ inputs.force-re-evaluate }}" == 'true' ]] && opt='$opt -f'
53
- [[ "${{ inputs.force-re-evaluate }}" == 'true' ]] && echo "DEBUG 01: ${{ inputs.force-re-evaluate }}"
54
- echo "DEBUG 01x: ${{ inputs.force-re-evaluate }}"
55
- [[ "${{ inputs.force-patch-increment }}" == 'true' ]] && opt='$opt -p'
56
- [[ "${{ inputs.force-patch-increment }}" == 'true' ]] && echo "DEBUG 02: ${{ inputs.force-patch-increment }}"
57
- echo "DEBUG 02x: ${{ inputs.force-patch-increment }}"
58
- [[ "${{ inputs.mono-repo-product-name }}" != "" ]] && opt='$opt -n ${{ inputs.mono-repo-product-name }}'
59
- [[ "${{ inputs.mono-repo-product-name }}" != "" ]] && echo "DEBUG 03: ${{ inputs.mono-repo-product-name }}"
60
- echo "DEBUG 03x: ${{ inputs.mono-repo-product-name }}"
61
- [[ "${{ inputs.mono-repo-product-path }}" != "" ]] && opt='$opt -d ${{ inputs.mono-repo-product-path }}'
62
- [[ "${{ inputs.mono-repo-product-path }}" != "" ]] && echo "DEBUG 04: ${{ inputs.mono-repo-product-path }}"
63
- echo "DEBUG 04x: ${{ inputs.mono-repo-product-path }}"
52
+ [[ "${{ github.event.inputs.force-re-evaluate }}" == 'true' ]] && opt='$opt -f'
53
+ [[ "${{ github.event.inputs.force-patch-increment }}" == 'true' ]] && opt='$opt -p'
54
+ [[ "${{ github.event.inputs.mono-repo-product-name }}" != "" ]] && opt='$opt -n ${{ github.event.inputs.mono-repo-product-name }}'
55
+ [[ "${{ github.event.inputs.mono-repo-product-path }}" != "" ]] && opt='$opt -d ${{ github.event.inputs.mono-repo-product-path }}'
64
56
new_version="$(${{ github.action_path }}/scripts/detectNewVersion.sh $opt)" || true
65
57
echo "new-version=$new_version" | tee $GITHUB_OUTPUT
66
58
if [[ "$new_version" =~ "520" ]]; then
You can’t perform that action at this time.
0 commit comments