From 4f70681dcb4b0c74d7bd7db69b0a539890022be3 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Sun, 19 Apr 2026 15:49:03 +0000 Subject: [PATCH] =?UTF-8?q?ci:=20fix=20.woodpecker.yml=20paths=20=E2=80=94?= =?UTF-8?q?=20repo=20was=20extracted=20from=20monorepo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Path filter `payslip-ingest/**` and context `payslip-ingest/` were leftovers from when this lived as a subdirectory in the /home/wizard/code monorepo. In this standalone repo there's no such subdirectory, so the filter never matched and builds never ran on push. Drop the filter and point context + dockerfile at the repo root. Co-Authored-By: Claude Opus 4.7 (1M context) --- .woodpecker.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index ee6c05b..b5aaa92 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,6 +1,5 @@ when: event: push - path: "payslip-ingest/**" clone: git: @@ -23,8 +22,8 @@ steps: username: viktorbarzin password: from_secret: registry-password - dockerfile: payslip-ingest/Dockerfile - context: payslip-ingest + dockerfile: Dockerfile + context: . auto_tag: true platforms: - linux/amd64