ci: fix .woodpecker.yml paths — repo was extracted from monorepo
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) <noreply@anthropic.com>
This commit is contained in:
parent
92e4ecaf78
commit
4f70681dcb
1 changed files with 2 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue