From 35ad777fc4e30bcd962dbebf0e520e3a35025df2 Mon Sep 17 00:00:00 2001 From: Jason McInerney Date: Wed, 11 Oct 2023 23:20:56 -0700 Subject: [PATCH] Make recommended changes --- .github/workflows/integration-tests-publish.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration-tests-publish.yml b/.github/workflows/integration-tests-publish.yml index 6cd5b9d0dc..7ab84fbbe8 100644 --- a/.github/workflows/integration-tests-publish.yml +++ b/.github/workflows/integration-tests-publish.yml @@ -33,10 +33,11 @@ jobs: id: collect_other_tags run: | RELEASE_TAG="${{ github.ref_name != '' && format('{0}.dkr.ecr.{1}.amazonaws.com/chainlink-ccip-tests:{2}', secrets.QA_AWS_ACCOUNT_NUMBER, secrets.QA_AWS_REGION, github.ref_name) || '' }}" + echo ${RELEASE_TAG} - name: Build Image uses: ./.github/actions/build-test-image with: - other_tags: ${{ env.ECR_TAG }}, ${RELEASE_TAG} + other_tags: ${{ env.ECR_TAG }},${RELEASE_TAG} QA_AWS_ROLE_TO_ASSUME: ${{ secrets.QA_AWS_ROLE_TO_ASSUME }} QA_AWS_REGION: ${{ secrets.QA_AWS_REGION }} QA_AWS_ACCOUNT_NUMBER: ${{ secrets.QA_AWS_ACCOUNT_NUMBER }}