Skip to content

Commit

Permalink
More quotation marks
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeByDrescher committed Sep 22, 2024
1 parent 3d76f20 commit e7bc92d
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 @@ -87,7 +87,7 @@ jobs:
oldBioSimVersion=${{ steps.latest_release_info.outputs.tag_name }}
echo "oldBioSimVersion=$oldBioSimVersion"
if [ "$oldBioSimVersion" < "$bioSimVersion" ] && [ -z ${{ steps.get-tagged-version.outputs.version }} ]; then
if [ "$oldBioSimVersion" < "$bioSimVersion" ] && [ -z "${{ steps.get-tagged-version.outputs.version }}: ]; then
echo "needDeploy=true" >> "$GITHUB_OUTPUT"
echo "Deploy will be performed!"
else
Expand All @@ -97,7 +97,7 @@ jobs:
if [ "$oldBioSimVersion" < "$bioSimVersion" ]; then
echo "Version is not newer than existing version"
fi
if [ -z ${{ steps.get-tagged-version.outputs.version }} ]; then
if [ -z "${{ steps.get-tagged-version.outputs.version }}" ]; then
echo "This is not a tagged action; push a new tag to release."
fi
fi
Expand Down

0 comments on commit e7bc92d

Please sign in to comment.