Files
container-update-checker/.woodpecker/build.yml
vista 9dde049945
All checks were successful
ci/woodpecker/push/build Pipeline was successful
Update '.woodpecker/build.yml'
2023-03-12 11:16:15 +01:00

28 lines
834 B
YAML

pipeline:
check_self:
# failure: ignore # this doesnt work
image: alpine
environment:
BASE: alpine:latest
TARGET: vistanarvas/${CI_REPO_NAME}:latest
commands:
- apk add curl jq
- sh check.sh
when:
cron: nightly
event: cron
build_and_publish:
image: woodpeckerci/plugin-docker-buildx
settings:
username: vistanarvas
password:
from_secret: DOCKERHUB_TOKEN
repo: vistanarvas/${CI_REPO_NAME}
tag: ${CI_COMMIT_BRANCH}
auto_tag: true
when:
cron: nightly
path:
include: [ '.woodpecker/build.yml', 'Dockerfile', 'check.sh' ]
event: [push, tag, deployment, cron, manual]