From c51e09c6b66bd7ed0612d688c84b1bb06ad42558 Mon Sep 17 00:00:00 2001 From: Michael Schiemer Date: Sat, 1 Nov 2025 21:23:08 +0100 Subject: [PATCH] fix(ci): Add runtime-base back to build job needs - build job accesses needs.runtime-base.outputs.image_ref, so runtime-base must be in needs - Added always() condition to ensure build runs even if runtime-base is skipped - Outputs will be empty if runtime-base was skipped, which is handled gracefully --- .gitea/workflows/build-image.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build-image.yml b/.gitea/workflows/build-image.yml index 1899c58e..d2055b75 100644 --- a/.gitea/workflows/build-image.yml +++ b/.gitea/workflows/build-image.yml @@ -471,8 +471,8 @@ jobs: # Job 2: Build & Push Docker Image build: name: Build Docker Image - needs: [changes] - if: needs.changes.outputs.needs_build == 'true' + needs: [changes, runtime-base] + if: always() && needs.changes.outputs.needs_build == 'true' runs-on: docker-build outputs: image_tag: ${{ steps.image_info.outputs.IMAGE_TAG }}