diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index b02c086e5..1b88a5923 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -35,7 +35,7 @@ jobs: version=$(cat VERSION) if [ "$tag" != "$version" ]; then # if tag is vX.Y.Z-pN and version is vX.Y.Z then it's ok - if [[ $tag == $version-p* ]] && [[ ${tag#"$version"} =~ ^-p[0-9]+$ ]] then + if [[ $tag == $version-p* ]] && [[ ${tag#"$version"} =~ ^-p[0-9]+$ ]]; then echo "This is a patch version" exit 0 fi