16 lines
459 B
YAML
16 lines
459 B
YAML
---
|
|
when:
|
|
- event: "push"
|
|
branch: "main"
|
|
- event: "manual"
|
|
|
|
steps:
|
|
|
|
# build yamllint container
|
|
- name: "build"
|
|
image: "cr.simoncor.net/quay/buildah/stable:latest"
|
|
commands:
|
|
- "VERSION=$(grep -oP '(?<=yamllint==)[0-9.]+' Dockerfile.linux.amd64)"
|
|
- "buildah bud -t yamllint -f Dockerfile.linux.amd64 ."
|
|
- "buildah tag yamllint cr.simoncor.net/yamllint:${VERSION}"
|
|
- "buildah push cr.simoncor.net/yamllint:${VERSION}"
|