docker-pyload-ng/.woodpecker.yml

32 lines
811 B
YAML
Raw Normal View History

2023-11-29 08:07:34 +01:00
steps:
2024-09-09 21:38:48 +02:00
build:
image: woodpeckerci/plugin-kaniko
pull: true
settings:
dry-run: true
repo: ${CI_REPO_OWNER}/pyload-ng
registry: ${DOCKER_REGISTRY}
mirror: https://${DOCKER_REGISTRY}
tags: latest
build_args: VERSION=dev
when:
branch:
exclude: ${CI_REPO_DEFAULT_BRANCH}
event: [push, cron, tag, manual]
push:
2024-04-23 23:23:54 +02:00
image: woodpeckerci/plugin-kaniko
pull: true
2022-11-15 23:39:09 +01:00
settings:
2022-11-16 20:03:19 +01:00
username:
from_secret: registry_username
2022-11-15 23:39:09 +01:00
password:
2022-11-16 20:03:19 +01:00
from_secret: registry_password
2024-04-23 23:23:54 +02:00
repo: ${CI_REPO_OWNER}/pyload-ng
2022-11-16 20:03:19 +01:00
registry: ${DOCKER_REGISTRY}
2022-11-23 17:57:42 +01:00
mirror: https://${DOCKER_REGISTRY}
2022-11-15 23:39:09 +01:00
tags: latest
2024-05-25 13:32:04 +02:00
build_args: VERSION=dev
2022-11-15 23:39:09 +01:00
when:
2024-09-09 21:38:48 +02:00
branch: ${CI_REPO_DEFAULT_BRANCH}
2023-05-20 19:02:30 +02:00
event: [push, cron, tag, manual]