debian-ci/.woodpecker.yaml

38 lines
796 B
YAML
Raw Permalink Normal View History

2024-09-24 22:20:22 +02:00
steps:
- name: docker
image: woodpeckerci/plugin-docker-buildx
privileged: true
settings:
registry: git.ar21.de
username:
from_secret: REGISTRY_USER
password:
from_secret: REGISTRY_PASS
repo: git.ar21.de/aaron/debian-ci
tags: latest
platforms:
- linux/arm64
- linux/amd64
when:
- branch: main
2024-09-24 22:24:24 +02:00
event: [push, manual]
2024-09-24 22:20:22 +02:00
- name: docker-build
image: woodpeckerci/plugin-docker-buildx
privileged: true
settings:
registry: git.ar21.de
username:
from_secret: REGISTRY_USER
password:
from_secret: REGISTRY_PASS
repo: git.ar21.de/aaron/debian-ci
tags: latest
platforms:
- linux/arm64
- linux/amd64
dry_run: true
when:
- branch:
exclude: main
2024-09-24 22:24:24 +02:00
event: [push, manual]