chore(ci): Don't namespace release images (#4114)

Fixes a logic bug.
This commit is contained in:
Jamil
2024-03-12 18:16:52 -07:00
committed by GitHub
parent b1871ea24d
commit 2d79f32394

View File

@@ -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' }}