From c007ce1ed6625a7e5873cca88fd82e80d9295a76 Mon Sep 17 00:00:00 2001 From: "sandipsamal117@gmail.com" Date: Tue, 1 Oct 2024 17:31:30 -0400 Subject: [PATCH] fix logic error --- .github/workflows/ci.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9ebf02e..0d1f092 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -141,8 +141,8 @@ jobs: if: github.ref_type == 'tag' run: | auth='${{ secrets.CHRISPROJECT_USERNAME }}:${{ secrets.CHRISPROJECT_PASSWORD }}' - admin_url="$(curl -sSf -u "$auth" '${{ inputs.chris_url }}' -H 'Accept: application/json' | jq -r '.collection_links.admin')" chris_url="https://cube.chrisproject.org/api/v1/" + admin_url="$(curl -sSf -u "$auth" '${{ chris_url }}' -H 'Accept: application/json' | jq -r '.collection_links.admin')" compute_names="NERC" if [ "$admin_url" = "null" ]; then echo "::error ::${{ secrets.CHRISPROJECT_USERNAME }} is not an admin for ${{ chris_url }}" diff --git a/setup.py b/setup.py index 5c231a0..99a598a 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name = 'csv2json', - version = '1.3.3', + version = '1.3.4', description = 'An app to convert CSV generated from pl-lld_inference to a JSON representation', long_description = readme, author = 'FNNDSC',