From 623b739dfd21894b72a3f38839d5404daf21d004 Mon Sep 17 00:00:00 2001 From: David Leifker Date: Wed, 14 Aug 2024 17:40:45 -0500 Subject: [PATCH] fix(ci): fix single tag comma split --- .github/actions/docker-custom-build-and-push/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/docker-custom-build-and-push/action.yml b/.github/actions/docker-custom-build-and-push/action.yml index 4ac9bb536ec93..855b6922d1d65 100644 --- a/.github/actions/docker-custom-build-and-push/action.yml +++ b/.github/actions/docker-custom-build-and-push/action.yml @@ -87,7 +87,7 @@ runs: TAGS=""" ${{ inputs.image_tag }} """ - echo "SINGLE_TAG=$(echo $IMAGES | tr '\n' ' ' | awk -F' ' '{ print $1 }'):$(echo $TAGS | tr '\n' ' ' | awk -F' ' '{ print $1 }')" >> $GITHUB_OUTPUT + echo "SINGLE_TAG=$(echo $IMAGES | tr '\n' ' ' | awk -F' |,' '{ print $1 }'):$(echo $TAGS | tr '\n' ' ' | awk -F' ' |,'{ print $1 }')" >> $GITHUB_OUTPUT id: single_tag - name: Upload image locally for testing (if not publishing) uses: ishworkh/docker-image-artifact-upload@v1