From 342bdad700f1f5b9451a5ac08c61c7f366d2a1d4 Mon Sep 17 00:00:00 2001 From: Logan Drescher Date: Sun, 22 Sep 2024 01:12:45 -0400 Subject: [PATCH] Changing tag type --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40e2128..edb4c18 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -96,6 +96,7 @@ jobs: # We version the containers with the `biosimulators_copasi` version, but list the version as the # COPASI version inside. copasiVersion=$(poetry -q run python -c "import COPASI; print(COPASI.__version__)") + echo "copasiVersion=$copasiVersion" >> $GITHUB_OUTPUT bioSimVersion=$(poetry -q run python -c "import biosimulators_copasi as bsc; print(bsc.__version__)") oldBioSimVersion=${{ steps.latest_release_info.outputs.tag_name }} @@ -161,7 +162,7 @@ jobs: --label org.opencontainers.image.created=${CREATED} \ --build-arg VERSION=${{ steps.get-tagged-version.outputs.version }} \ --build-arg SIMULATOR_VERSION=${{ steps.get-docker-image-tag.outputs.simulatorVersion }} \ - --tag ${{ steps.get-docker-image-tag.outputs.dockerImageBaseUrl }}:${{ steps.get-docker-image-tag.outputs.simulatorVersion }} \ + --tag ${{ steps.get-docker-image-tag.outputs.dockerImageBaseUrl }}:${{ steps.update-simulator-version.outputs.copasiVersion }} \ --tag ${{ steps.get-docker-image-tag.outputs.dockerImageBaseUrl }}:latest \ .