Files
docker-phpbb/.woodpecker/docker.yaml

39 lines
794 B
YAML
Raw Normal View History

2025-01-07 01:43:51 +04:00
when:
branch: main
event: [push, pull_request]
variables:
- &file Dockerfile
- &repo source.hodakov.me/${CI_REPO_OWNER}/docker-phpbb
steps:
dryrun:
2025-01-07 03:05:07 +04:00
image: woodpeckerci/plugin-docker-buildx:5.1.0
privileged: true
2025-01-07 01:43:51 +04:00
settings:
dockerfile: *file
platforms: linux/arm64/v8,linux/amd64
dry_run: true
repo: *repo
tags: latest
when:
event: pull_request
path: *file
publish:
2025-01-07 03:05:07 +04:00
image: woodpeckerci/plugin-docker-buildx:5.1.0
privileged: true
2025-01-07 01:43:51 +04:00
settings:
dockerfile: *file
platforms: linux/arm64/v8,linux/amd64
repo: *repo
registry: source.hodakov.me
tags: latest
username: ${CI_REPO_OWNER}
password:
2025-01-07 03:05:07 +04:00
from_secret: registry_token
2025-01-07 01:43:51 +04:00
when:
event: push
path: *file