From dfc8c0644a2dadf451b55d1501fba35c0a5e4626 Mon Sep 17 00:00:00 2001 From: Stephan Grein Date: Wed, 18 Dec 2024 15:25:43 +0100 Subject: [PATCH] Update publish_dockerhub.yml (#1538) * Update publish_dockerhub.yml * Update publish_dockerhub.yml Corrected workflow. --- .github/workflows/publish_dockerhub.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish_dockerhub.yml b/.github/workflows/publish_dockerhub.yml index 4b05ad1fc..c0e8fd6c8 100644 --- a/.github/workflows/publish_dockerhub.yml +++ b/.github/workflows/publish_dockerhub.yml @@ -3,7 +3,7 @@ name: Build and Push Docker Image on: push: branches: - - main + - develop paths: - 'docker/**' - '.github/workflows/docker-publish.yml' @@ -25,8 +25,8 @@ jobs: - name: Build and tag the Docker image run: | - docker build -t ICB_DCM/pypesto:latest -f docker/Dockerfile . + docker build -t stephanmg/pypesto:latest -f docker/Dockerfile . - name: Push the Docker image to Docker Hub run: | - docker push ICB_DCM/pypesto:latest + docker push stephanmg/pypesto:latest