From 61960adb893f5937df5c4dfd777089b88eeeb44c Mon Sep 17 00:00:00 2001 From: Akash-Jain <15995028+akash-jain-10@users.noreply.github.com> Date: Mon, 29 Jul 2024 14:21:42 +0530 Subject: [PATCH] chore: Update Tags conditions --- .github/actions/prepare-for-docker-build-and-push/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/prepare-for-docker-build-and-push/action.yml b/.github/actions/prepare-for-docker-build-and-push/action.yml index f5c6d6d6eede..73503ec011cd 100644 --- a/.github/actions/prepare-for-docker-build-and-push/action.yml +++ b/.github/actions/prepare-for-docker-build-and-push/action.yml @@ -75,5 +75,5 @@ runs: ${{ inputs.image }} sep-tags: ',' tags: | - type=raw,value=${{ inputs.release_version }},enable=${{ inputs.is_ingestion }} - type=raw,${{ inputs.tag }},enable=${{ !inputs.is_ingestion || (inputs.is_ingestion && !inputs.is_release_candidate) }} + type=raw,value=${{ inputs.release_version }},enable=${{ inputs.is_ingestion == 'true' }} + type=raw,${{ inputs.tag }},enable=${{ !(inputs.is_ingestion) == 'false' || (inputs.is_ingestion == 'true' && !(inputs.is_release_candidate) == 'false') }}