You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ma...@apache.org on 2024/02/08 22:21:22 UTC

(superset) branch master updated: fix(ephemeral): fix tagging command for ECR (#27057)

This is an automated email from the ASF dual-hosted git repository.

maximebeauchemin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 81301ee54e fix(ephemeral): fix tagging command for ECR (#27057)
81301ee54e is described below

commit 81301ee54ef72922a415cecd2a6dac4ee3e33b01
Author: Maxime Beauchemin <ma...@gmail.com>
AuthorDate: Thu Feb 8 14:21:15 2024 -0800

    fix(ephemeral): fix tagging command for ECR (#27057)
---
 .github/workflows/ephemeral-env.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/ephemeral-env.yml b/.github/workflows/ephemeral-env.yml
index 23bc5a428c..152f0b26a3 100644
--- a/.github/workflows/ephemeral-env.yml
+++ b/.github/workflows/ephemeral-env.yml
@@ -146,8 +146,8 @@ jobs:
           SHA: ${{ steps.get-sha.outputs.sha }}
           IMAGE_TAG: ${{ steps.get-sha.outputs.sha }}-ci
         run: |
-          docker tag $SHA $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
-          docker tag $SHA $ECR_REGISTRY/$ECR_REPOSITORY:$SHA
+          docker tag $IMAGE_TAG $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
+          docker tag $IMAGE_TAG $ECR_REGISTRY/$ECR_REPOSITORY:$SHA
           docker push -a $ECR_REGISTRY/$ECR_REPOSITORY
 
   ephemeral-env-up: