Skip to content

Commit

Permalink
ci: fix bug that makes version type always 'unstable' (hemilabs#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuasing authored May 20, 2024
1 parent 1423bd2 commit 7d0a7f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
echo "tag=$TAG" >> "$GITHUB_OUTPUT"
TYPE=unstable
if echo "VERSION" | grep -Eq '^[1-9][0-9]*\.[0-9]+\.[0-9]+$'; then
if echo "$VERSION" | grep -Eq '^[1-9][0-9]*\.[0-9]+\.[0-9]+$'; then
TYPE=stable
fi
echo "Detected that $TAG is $TYPE"
Expand Down

0 comments on commit 7d0a7f1

Please sign in to comment.