You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
version_prefix=$(echo $version| cut -d'-' -f1 | sed 's/\.[0-9]*$//')
20
+
21
+
# Check if branch starts with the version prefix
22
+
if [[ "$branch_name"!="$version_prefix"* ]];then
23
+
echo"Branch name '$branch_name' does not match the version prefix '$version_prefix' in gradle.properties. Make sure you are pushing to the right branch."
0 commit comments