This commit is contained in:
parent
89e81d78bd
commit
57ccc28a6e
1 changed files with 40 additions and 0 deletions
40
.woodpecker/.build.yaml
Normal file
40
.woodpecker/.build.yaml
Normal file
|
@ -0,0 +1,40 @@
|
|||
---
|
||||
steps:
|
||||
- name: build (prod)
|
||||
image: woodpeckerci/plugin-docker-buildx
|
||||
settings:
|
||||
registry: git.ar21.de
|
||||
username:
|
||||
from_secret: REGISTRY_USER
|
||||
password:
|
||||
from_secret: REGISTRY_PASS
|
||||
repo: git.ar21.de/tom/push-message-randomizer
|
||||
platforms:
|
||||
- linux/amd64
|
||||
- linux/arm64
|
||||
tags:
|
||||
- latest
|
||||
- ${CI_PIPELINE_NUMBER}
|
||||
when:
|
||||
- branch: main
|
||||
event: push
|
||||
|
||||
- name: build (experimental)
|
||||
image: woodpeckerci/plugin-docker-buildx
|
||||
settings:
|
||||
registry: git.ar21.de
|
||||
username:
|
||||
from_secret: REGISTRY_USER
|
||||
password:
|
||||
from_secret: REGISTRY_PASS
|
||||
repo: git.ar21.de/tom/push-message-randomizer
|
||||
platforms:
|
||||
- linux/amd64
|
||||
- linux/arm64
|
||||
tags:
|
||||
- experimental
|
||||
- experimental-${CI_PIPELINE_NUMBER}
|
||||
when:
|
||||
- branch:
|
||||
exclude: main
|
||||
event: push
|
Loading…
Reference in a new issue