From 386dd5bca405d077f132eca7917a0f0e74f456a7 Mon Sep 17 00:00:00 2001 From: Joshua Sing Date: Sat, 18 May 2024 02:18:38 +1000 Subject: [PATCH] ci: fix bug in script that detects version stability in release ci --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 43420def..9e81f6c5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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"