From 78aba5306f331f8621d15c5c4c56a59f7eb5bf4c Mon Sep 17 00:00:00 2001 From: Doci Mou <22457019+dmou@users.noreply.github.com> Date: Tue, 18 Feb 2025 15:21:04 -0500 Subject: [PATCH] try again on gha bash echo interpolation syntax --- .github/workflows/ci-push-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-push-image.yml b/.github/workflows/ci-push-image.yml index ba1979847..3928c9868 100644 --- a/.github/workflows/ci-push-image.yml +++ b/.github/workflows/ci-push-image.yml @@ -49,7 +49,7 @@ jobs: run: | BRANCH=$(echo "${GITHUB_REF#refs/*/}" | sed 's/.*\///') echo "ECR_TAG_SHA=${{ steps.login-ecr.outputs.registry }}/${{ github.event.repository.name }}:${{ github.sha }}" >> "$GITHUB_OUTPUT" - echo "ECR_TAG_BRANCH=${{ steps.login-ecr.outputs.registry }}/${{ github.event.repository.name }}:$BRANCH" >> "$GITHUB_OUTPUT" + echo "ECR_TAG_BRANCH=${{ steps.login-ecr.outputs.registry }}/${{ github.event.repository.name }}:"${BRANCH} >> "$GITHUB_OUTPUT" - name: Build and push uses: docker/build-push-action@v6