Skip to content

Commit

Permalink
syntactic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeByDrescher committed Sep 22, 2024
1 parent c0dc538 commit fd000f8
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 @@ -107,14 +107,14 @@ jobs:
# online as the COPASI version within the container.
copasiVersion=$(poetry -q run python -c "import COPASI; print(COPASI.__version__)")
echo "copasiVersion=$copasiVersion" >> $GITHUB_OUTPUT
echo "copasiVersion=`$copasiVersion`"
echo "copasiVersion=$copasiVersion"
bioSimVersion=$(poetry -q run python -c "import biosimulators_copasi as bsc; print(bsc.__version__)")
echo "bioSimVersion=$bioSimVersion" >> $GITHUB_OUTPUT
echo "bioSimVersion=`$bioSimVersion`"
echo "bioSimVersion=$bioSimVersion"
oldBioSimVersion=${{ steps.latest_release_info.outputs.tag_name }}
echo "oldBioSimVersion=`$oldBioSimVersion`"
echo "oldBioSimVersion=$oldBioSimVersion"
if [ $oldBioSimVersion < $bioSimVersion ] && [ -z ${{ steps.get-tagged-version.outputs.version }} ]; then
echo "needDeploy=true" >> "$GITHUB_OUTPUT"
Expand Down

0 comments on commit fd000f8

Please sign in to comment.