From 2bbe5c2db51cc41dedb6839949976f687632637c Mon Sep 17 00:00:00 2001 From: david-leifker <114954101+david-leifker@users.noreply.github.com> Date: Tue, 13 Aug 2024 16:50:55 -0500 Subject: [PATCH] Update action.yml --- .github/actions/docker-custom-build-and-push/action.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/actions/docker-custom-build-and-push/action.yml b/.github/actions/docker-custom-build-and-push/action.yml index e1c353b72eb83..b9761ccdfc640 100644 --- a/.github/actions/docker-custom-build-and-push/action.yml +++ b/.github/actions/docker-custom-build-and-push/action.yml @@ -55,7 +55,6 @@ runs: latest=false suffix=${{ inputs.flavor && format('-{0}', inputs.flavor) || '' }} tags: | - # Order matters for determining single tag below, first should be the provided tag type=raw,value=${{ inputs.image_tag }} type=raw,value=head,enable=${{ github.ref == format('refs/heads/{0}', 'acryl-main') }} type=ref,event=pr,prefix=pr @@ -83,7 +82,7 @@ runs: shell: bash run: | TAGS=""" - ${{ steps.docker_meta.outputs.tags }} + ${{ inputs.image_tag }} """ echo "SINGLE_TAG=$(echo $TAGS | tr '\n' ' ' | awk -F' ' '{ print $1 }')" >> $GITHUB_OUTPUT id: single_tag