yamllint/.woodpecker/build.yaml
Simon Cornet 66e3b392dc
All checks were successful
ci/woodpecker/push/build Pipeline was successful
feat: use fixed versions
2026-05-12 10:39:48 +02:00

22 lines
532 B
YAML

---
when:
- event: "push"
branch: "main"
- event: "manual"
steps:
# build yamllint container
- name: "build"
image: "cr.simoncor.net/quay/buildah/stable:latest"
privileged: true
commands:
# build yamllint container
- "buildah bud -t yamllint -f Dockerfile.linux.amd64 ."
# renovate: datasource=pypi depName=yamllint
- "buildah tag yamllint cr.simoncor.net/yamllint:1.38.0"
# renovate: datasource=pypi depName=yamllint
- "buildah push cr.simoncor.net/yamllint:1.38.0"