From 613823ea8428c8879b30cd2b629b05bd48126ed7 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Evrard Date: Tue, 7 Jan 2025 17:39:49 +0100 Subject: [PATCH] Remove dashes in the dockerhub repositories We never used dashes in the docker hub repository. Yet, we have - in the code for releasing. This is a problem, as this fails the publishing. This fixes it by removing the dash, fixing the previous commit 8aef4c9044d500b25a0b57587e4048c5452469e3. --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2959d26a..858cb2c9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -61,7 +61,7 @@ jobs: - name: Push development image into dockerhub run: | docker images #display currently built images to ensure next calls will happen correctly - docker tag ghcr.io/ca-gip/kubi-${{ matrix.component }}:${{ steps.sha.outputs.sha_short }}-${{ matrix.arch }} ca-gip/kubi-${{ matrix.component }}:${{ steps.sha.outputs.sha_short }}-${{ matrix.arch }} - docker push ca-gip/kubi-${{ matrix.component }}:${{ steps.sha.outputs.sha_short }}-${{ matrix.arch }} - docker tag ghcr.io/ca-gip/kubi-${{ matrix.component }}:${{ steps.sha.outputs.sha_short }}-${{ matrix.arch }} ca-gip/kubi-${{ matrix.component }}:${{ steps.tag.outputs.version }} - docker push ca-gip/kubi-${{ matrix.component }}:${{ steps.tag.outputs.version }} + docker tag ghcr.io/ca-gip/kubi-${{ matrix.component }}:${{ steps.sha.outputs.sha_short }}-${{ matrix.arch }} cagip/kubi-${{ matrix.component }}:${{ steps.sha.outputs.sha_short }}-${{ matrix.arch }} + docker push cagip/kubi-${{ matrix.component }}:${{ steps.sha.outputs.sha_short }}-${{ matrix.arch }} + docker tag ghcr.io/ca-gip/kubi-${{ matrix.component }}:${{ steps.sha.outputs.sha_short }}-${{ matrix.arch }} cagip/kubi-${{ matrix.component }}:${{ steps.tag.outputs.version }} + docker push cagip/kubi-${{ matrix.component }}:${{ steps.tag.outputs.version }}