diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 62c5f70..f9eb72a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -90,6 +90,13 @@ jobs: with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_PASSWORD }} + + - name: Login to GitHub Container Registry + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push uses: docker/build-push-action@v2 @@ -100,6 +107,7 @@ jobs: tags: | ${{ steps.determine.outputs.dock_image }} localhost:5000/${{ steps.determine.outputs.dock_image }} + ghcr.io/${{ steps.determine.outputs.dock_image }} platforms: linux/amd64,linux/ppc64le,linux/arm64 push: true cache-from: type=local,src=/tmp/.buildx-cache diff --git a/setup.py b/setup.py index 202c596..b9a921b 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name = 'simpledsapp', - version = '2.0.2', + version = '2.1.0', description = 'A simple ChRIS ds app demo', long_description = readme, author = 'FNNDSC',