From 8767291446fc3113f4c3927446e9c361cccee8ee Mon Sep 17 00:00:00 2001 From: falcorocks <14293929+falcorocks@users.noreply.github.com> Date: Mon, 1 Dec 2025 17:15:46 +0100 Subject: [PATCH] fix(ci): enable automatic Docker image publishing on release tags The build-docker job was only running when manually triggered via workflow_dispatch. This change enables automatic Docker image publishing when release tags (v*) are pushed, matching the behavior of the build-binary job. Signed-off-by: falcorocks <14293929+falcorocks@users.noreply.github.com> --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 2e09ce65c..c02ea9c76 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -181,7 +181,7 @@ jobs: echo "${{ steps.create-release-draft.outputs.url }}" >> $GITHUB_STEP_SUMMARY build-docker: - if: ${{ github.event.inputs.build-docker == 'true' }} + if: ${{ github.event.inputs.build-docker == 'true' || github.event_name == 'push'}} name: Build and publish Docker image needs: extract-version runs-on: warp-ubuntu-2404-x64-16x