From 7d4fcdcc122a8ac520958a689160cc97b4eaee39 Mon Sep 17 00:00:00 2001 From: "sandipsamal117@gmail.com" Date: Wed, 2 Oct 2024 17:22:08 -0400 Subject: [PATCH] update public_repo url --- .github/workflows/ci.yml | 4 +++- setup.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e0e7200..ca8b952 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -121,7 +121,9 @@ jobs: docker tag localhost:5000/$dock_image $dock_image script=$(docker inspect --format '{{ (index .Config.Cmd 0) }}' $dock_image) docker run --rm $dock_image $script --json \ - | jq '. += {"name":"pl-topologicalcopy", "dock_image": "'${{ steps.determine.outputs.dock_image }}'", "public_repo": "'${{ steps.determine.outputs.repo }}'" }' \ + | jq '. += {"name":"pl-topologicalcopy", \ + "dock_image": "'$dock_image'", \ + "public_repo": "'${{ github.server_url }}/${{ github.repository }}'" }' \ > /tmp/description.json json="$(docker run --rm $dock_image $script --json)" # Escape single quotes diff --git a/setup.py b/setup.py index b8fc491..16879bc 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name = 'topologicalcopy', - version = '1.0.10', + version = '1.0.11', description = 'A plugin ts app to copy filtered output dirs from a list of plugin instances', long_description = readme, author = 'FNNDSC',