From 7cee987de5325744b0850507c87b7dd547420065 Mon Sep 17 00:00:00 2001 From: Logan Drescher Date: Sun, 22 Sep 2024 11:57:02 -0400 Subject: [PATCH] Attempting to resolve operator issue --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 74e3526..0a59acb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -96,9 +96,12 @@ jobs: echo "needDeploy=false" >> "$GITHUB_OUTPUT" echo "Deploy will NOT be performed:" # Get an idea of why we will not deploy - if [[ $oldBioSimVersion >= $bioSimVersion ]]; then + if [[ $oldBioSimVersion > $bioSimVersion ]]; then echo "Version is not newer than existing version" fi + if [[ $oldBioSimVersion == $bioSimVersion ]]; then + echo "Old and new versions are the same" + fi if [[ -z "$taggedVersion" ]]; then echo "This is not a tagged action; push a new tag to release." fi