Files
container-update-checker/.woodpecker/build.yml
vista 1c50546a46
Some checks failed
ci/woodpecker/cron/build Pipeline failed
ci/woodpecker/manual/build Pipeline was successful
Update '.woodpecker/build.yml'
[CI SKIP]
2023-03-11 21:50:55 +01:00

29 lines
867 B
YAML

pipeline:
check_self:
# failure: ignore # this doesnt work
image: alpine
secrets: [ dockerhub_token ]
environment:
DOCKER_USERNAME: vistanarvas
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}
auto_tag: true
when:
cron: nightly
path:
include: [ '.woodpecker/build.yml', 'Dockerfile', 'check.sh' ]
event: [push, tag, deployment, cron]