We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd1b9d8 commit 91f77d0Copy full SHA for 91f77d0
script/release
@@ -14,10 +14,11 @@ echo -e "The latest release tag is: ${BLUE}${latest_tag}${OFF}"
14
read -p 'New Release Tag (vX.X.X format): ' new_tag
15
16
tag_regex='^v\d\.\d\.\d$'
17
-echo "$new_tag" | grep -P -q $tag_regex
+echo "$new_tag" | grep -E -q $tag_regex
18
19
if [[ $? -ne 0 ]]; then
20
- echo "Tag: $new_tag is valid"
+ echo -e "${RED}ERROR${OFF} - Tag: $new_tag is not valid. Please use vX.X.X format."
21
+ exit 1
22
fi
23
24
git tag -a $new_tag -m "$new_tag Release"
0 commit comments