We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8397de5 commit 972f938Copy full SHA for 972f938
.github/bump-version.bump.sh
@@ -54,6 +54,10 @@ if [ -z "${RELEASEVERS}" ] ; then
54
if ! [[ ${RELEASEVERS} =~ [-.]rc([-.]|$) ]] ; then
55
RELEASEVERS="${RELEASEVERS}-rc.0"
56
fi
57
+ # If there's no number after the "rc", append ".0".
58
+ if ! [[ ${RELEASEVERS} =~ [-.]rc[-.][0-9]+ ]] ; then
59
+ RELEASEVERS="${RELEASEVERS}.0"
60
+ fi
61
;;
62
esac
63
0 commit comments