From 5c6507493c65a270a37f5616d43c87aa2a10bfe0 Mon Sep 17 00:00:00 2001 From: Michele De Simone Date: Mon, 11 Sep 2023 09:58:39 +0200 Subject: [PATCH] fix docker tag format --- .github/workflows/ci-branch.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-branch.yaml b/.github/workflows/ci-branch.yaml index 605b8b6a..af8135f9 100644 --- a/.github/workflows/ci-branch.yaml +++ b/.github/workflows/ci-branch.yaml @@ -65,5 +65,5 @@ jobs: file: ./target/docker/stage/Dockerfile push: false # just testing the build tags: | - ${{ steps.login-ecr.outputs.registry }}/${{ env.NORM_REPO }}:${{ github.ref_name }}-latest - ${{ steps.login-ecr.outputs.registry }}/${{ env.NORM_REPO }}:commit-${{ github.sha }} + ${{ env.NORM_REPO }}:${{ github.ref_name }}-latest + ${{ env.NORM_REPO }}:commit-${{ github.sha }}