From 07dedbd3bb8c53435ad769baa79d359446a0acf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Barrag=C3=A1n=20Merino?= Date: Thu, 16 Oct 2025 12:15:00 +0200 Subject: [PATCH] :paperclip: Fix registry uri MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: David Barragán Merino --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 206bbadbb0..d72ceb2d0a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -60,12 +60,12 @@ jobs: EXTRA_TAGS=("main" "latest") for image in "${IMAGES[@]}"; do - docker pull "$REGISTRY/penpotapp/$image:$TAG" - docker tag "$REGISTRY/penpotapp/$image:$TAG" "penpotapp/$image:$TAG" + docker pull "$REGISTRY/$image:$TAG" + docker tag "$REGISTRY/$image:$TAG" "penpotapp/$image:$TAG" docker push "penpotapp/$image:$TAG" for tag in "${EXTRA_TAGS[@]}"; do - docker tag "$REGISTRY/penpotapp/$image:$TAG" "penpotapp/$image:$tag" + docker tag "$REGISTRY/$image:$TAG" "penpotapp/$image:$tag" docker push "penpotapp/$image:$tag" done done