Skip to content

Commit

Permalink
Update entrypoint.sh
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
PrabuDzak and github-actions[bot] authored Sep 29, 2022
1 parent bb2046e commit f908137
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,9 @@ then
fi

case "$log" in
*$major_string_token* ) new=$(semver -i major $tag); part="major";;
*$minor_string_token* ) new=$(semver -i minor $tag); part="minor";;
*$patch_string_token* ) new=$(semver -i patch $tag); part="patch";;
*$major_string_token* ) new=$(semver -i major "$tag"); part="major";;
*$minor_string_token* ) new=$(semver -i minor "$tag"); part="minor";;
*$patch_string_token* ) new=$(semver -i patch "$tag"); part="patch";;
*$none_string_token* )
echo "Default bump was set to none. Skipping..."
echo "::set-output name=new_tag::$tag"
Expand Down

0 comments on commit f908137

Please sign in to comment.