Skip to content

Commit

Permalink
Merge pull request #1809 from goplus/main
Browse files Browse the repository at this point in the history
p2
  • Loading branch information
xushiwei authored Mar 9, 2024
2 parents b20ff5f + 60fe511 commit 5a40ea9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5a40ea9

Please sign in to comment.