From 8f34c510588b8b749e0eaab0e57bdede99c4bac2 Mon Sep 17 00:00:00 2001 From: jedarden Date: Thu, 4 Jun 2026 01:12:38 -0400 Subject: [PATCH] feat: add acb-enrichment to build pipeline Add build-enrichment task to acb-build.yml WorkflowTemplate. This will build the enrichment service image to Docker Hub on next push. --- manifests/acb-build.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/manifests/acb-build.yml b/manifests/acb-build.yml index 1444db9..3078974 100644 --- a/manifests/acb-build.yml +++ b/manifests/acb-build.yml @@ -112,6 +112,17 @@ spec: value: cmd/acb-api/Dockerfile - name: context value: . + - name: build-enrichment + template: kaniko-build + dependencies: [test] + arguments: + parameters: + - name: image + value: acb-enrichment + - name: dockerfile + value: cmd/acb-enrichment/Dockerfile + - name: context + value: . # --- Strategy bots (context: bots/, Dockerfiles self-contained) --- - name: build-bot-random template: kaniko-build