From 84e1b01cec1048498227c7f2363b2fe86d5d283c Mon Sep 17 00:00:00 2001 From: Todd Ekenstam <3845995+tekenstam@users.noreply.github.com> Date: Mon, 17 Jul 2023 14:13:06 -0700 Subject: [PATCH] Add explicit path to tags (#358) * Add explicit path to tags Signed-off-by: Todd Ekenstam * Update .github/workflows/ci.yaml Co-authored-by: Venkata Gunapati --------- Signed-off-by: Todd Ekenstam Co-authored-by: Venkata Gunapati --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d426b2f3..79696e42 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -79,7 +79,7 @@ jobs: file: ./Dockerfile platforms: linux/amd64,linux/arm/v7,linux/arm64 push: true - tags: master + tags: ${{ env.REGISTRY }}/keikoproj/rolling-upgrade-controller:master - name: Build and push Docker image with tag latest # only on releases of keikoproj/upgrade-manager if: github.event_name == 'release' && github.repository == 'keikoproj/upgrade-manager' @@ -89,7 +89,7 @@ jobs: file: ./Dockerfile platforms: linux/amd64,linux/arm/v7,linux/arm64 push: true - tags: latest + tags: ${{ env.REGISTRY }}/keikoproj/rolling-upgrade-controller:latest - name: Build and push Docker image with tag git-tag # only on releases of keikoproj/upgrade-manager if: github.event_name == 'release' && github.repository == 'keikoproj/upgrade-manager'