From 2d79f323945af16e40d2eefaff4f981a80be767d Mon Sep 17 00:00:00 2001 From: Jamil Date: Tue, 12 Mar 2024 18:16:52 -0700 Subject: [PATCH] chore(ci): Don't namespace release images (#4114) Fixes a logic bug. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 79b8a1ad8..22ef67d1b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,7 +49,7 @@ jobs: uses: ./.github/workflows/_build_artifacts.yml secrets: inherit with: - image_prefix: ${{ inputs.image_prefix || 'debug' }} + image_prefix: ${{ (github.event_name != 'workflow_call' && 'debug') || inputs.image_prefix }} profile: ${{ inputs.profile || 'debug' }} stage: ${{ inputs.stage || 'debug' }}