From bbccbef57852db947dccf2f131176f8802a5f36f Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 31 Mar 2024 09:55:17 +0200 Subject: [PATCH] Fix loop --- .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 6bbb029498..568d0be2c3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -161,7 +161,7 @@ jobs: # in both cases, if the release or tag already exists, add ".1" until it no longer exists. tagFound=true tagCount=1 - while [ $tagFound ] + while [ "$tagFound" = true ] do if [ $(git tag -l "$releaseName") ]; then echo "Tag $releaseName exists already."