diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6a02e09..9dcbb4b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -173,6 +173,17 @@ jobs: jq < /tmp/description.json # pretty print in log echo "title=$(jq -r '.title' < /tmp/description.json)" >> $GITHUB_OUTPUT + - name: Upload ChRIS Plugin + id: upload + if: github.ref_type == 'tag' + uses: FNNDSC/upload-chris-plugin@v1 + with: + dock_image: ${{ steps.info.outputs.local_tag }} + username: ${{ secrets.CHRISPROJECT_USERNAME }} + password: ${{ secrets.CHRISPROJECT_PASSWORD }} + chris_url: https://cube.chrisproject.org/api/v1/ + compute_names: NERC + - name: Update DockerHub description uses: peter-evans/dockerhub-description@v3 continue-on-error: true # it is not crucial that this works diff --git a/dicom_repack.py b/dicom_repack.py index c08067c..1f964cb 100644 --- a/dicom_repack.py +++ b/dicom_repack.py @@ -8,7 +8,7 @@ import pydicom as dicom import os from pflog import pflog -__version__ = '1.2.2' +__version__ = '1.2.3' DISPLAY_TITLE = r""" _ _ _ _ diff --git a/requirements.txt b/requirements.txt index 0d9c1cc..3916aa7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -chris_plugin==0.2.1 +chris_plugin>=0.3.0 numpy pydicom==2.1.2 pflog==1.2.26 diff --git a/setup.py b/setup.py index ea9534f..f65749e 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def get_version(rel_path: str) -> str: description='A ChRIS plugin to merge individual dicom slices into a single multiframe DICOM', author='FNNDSC', author_email='dev@babyMRI.org', - url='https://github.com/FNNDSC/pl-dicom_re', + url='https://github.com/FNNDSC/pl-dicom_repack', py_modules=['dicom_repack'], install_requires=['chris_plugin'], license='MIT',