Skip to content

Commit

Permalink
Attempting to resolve operator issue
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeByDrescher committed Sep 22, 2024
1 parent fac6ebc commit 7cee987
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7cee987

Please sign in to comment.