From d78988816eb9243e3048fbdba0a5d001f0923705 Mon Sep 17 00:00:00 2001
From: Jason Madigan <jason@jasonmadigan.com>
Date: Wed, 18 Dec 2024 19:39:11 +0000
Subject: [PATCH] explicit image

Signed-off-by: Jason Madigan <jason@jasonmadigan.com>
---
 .github/workflows/dev-build.yaml     | 2 +-
 .github/workflows/release-build.yaml | 7 ++++---
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/dev-build.yaml b/.github/workflows/dev-build.yaml
index bc337ae..d114656 100644
--- a/.github/workflows/dev-build.yaml
+++ b/.github/workflows/dev-build.yaml
@@ -43,5 +43,5 @@ jobs:
           registry: quay.io
           username: ${{ env.REGISTRY_USER }}
           password: ${{ env.REGISTRY_PASSWORD }}
-          image: ${{ env.IMAGE_NAME }}
+          image: kuadrant/console-plugin
           tags: latest
diff --git a/.github/workflows/release-build.yaml b/.github/workflows/release-build.yaml
index 9ab9a00..c79d5ad 100644
--- a/.github/workflows/release-build.yaml
+++ b/.github/workflows/release-build.yaml
@@ -40,7 +40,8 @@ jobs:
       - name: Push Release Image
         uses: redhat-actions/push-to-registry@v2
         with:
-          image: quay.io/kuadrant/console-plugin
-          tags: latest
+          registry: quay.io
           username: ${{ env.REGISTRY_USER }}
-          password: ${{ env.REGISTRY_PASSWORD }}
\ No newline at end of file
+          password: ${{ env.REGISTRY_PASSWORD }}
+          image: kuadrant/console-plugin
+          tags: ${{ github.event.release.name }}