From eae34959dcf87650bad74d55c46a706191085a05 Mon Sep 17 00:00:00 2001 From: Logan Drescher Date: Sun, 22 Sep 2024 13:08:43 -0400 Subject: [PATCH] removing quotation marks --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 63d5c73..6611965 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -89,7 +89,7 @@ jobs: oldBioSimVersion=${{ steps.latest_release_info.outputs.tag_name }} echo "oldBioSimVersion=$oldBioSimVersion" - if [[ $oldBioSimVersion < $bioSimVersion ]] && ! [[ -z "$taggedVersion" ]]; then + if [[ $oldBioSimVersion < $bioSimVersion ]] && ! [[ -z $taggedVersion ]]; then echo "needDeploy=true" >> "$GITHUB_OUTPUT" echo "Deploy will be performed!" else @@ -102,7 +102,7 @@ jobs: if [[ $oldBioSimVersion == $bioSimVersion ]]; then echo "Old and new versions are the same" fi - if [[ -z "$taggedVersion" ]]; then + if [[ -z $taggedVersion ]]; then echo "This is not a tagged action; push a new tag to release." fi fi