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 88265c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
run: |
# We version the containers with the `biosimulators_copasi` version, but list the version
# online as the COPASI version within the container.
taggedVersion="'${{ steps.get-tagged-version.outputs.version }}'"
taggedVersion="${{ steps.get-tagged-version.outputs.version }}"
copasiVersion=$(poetry -q run python -c "import COPASI; print(COPASI.__version__)")
echo "copasiVersion=$copasiVersion" >> "$GITHUB_OUTPUT"
Expand All @@ -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 88265c3

Please sign in to comment.