From 48da254fab582d8dfc88be59f3032da0d73c69e5 Mon Sep 17 00:00:00 2001 From: Laurent Indermuehle Date: Tue, 7 Mar 2023 17:38:35 +0100 Subject: [PATCH] Attempt to use a fixed repo name in the image name My last attempts produced duplicates images under my name + repo name: laurent-indermuehle/community.mysql. Previously I had only my name. And none of the above are what we want. We want only community.mysql in the image name... --- .github/workflows/build-docker-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml index fa10268..ed9a742 100644 --- a/.github/workflows/build-docker-image.yml +++ b/.github/workflows/build-docker-image.yml @@ -43,7 +43,7 @@ jobs: with: images: "${{ inputs.registry }}\ - /${{ github.repository }}\ + /community.mysql\ /${{ inputs.image_name }}" tags: latest