Skip to content

Commit

Permalink
removing quotation marks
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeByDrescher committed Sep 22, 2024
1 parent fb50946 commit eae3495
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit eae3495

Please sign in to comment.