Skip to content

Commit

Permalink
Remove dashes in the dockerhub repositories
Browse files Browse the repository at this point in the history
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 8aef4c9.
  • Loading branch information
evrardjp-cagip committed Jan 7, 2025
1 parent 6cd9179 commit 613823e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit 613823e

Please sign in to comment.