All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Signed-off-by: Nis Wechselberg <enbewe@enbewe.de>
17 lines
459 B
YAML
17 lines
459 B
YAML
---
|
|
when:
|
|
- event:
|
|
- 'push'
|
|
- 'manual'
|
|
|
|
steps:
|
|
- name: 'Build and deploy uffd-ldapd container image'
|
|
image: 'quay.io/buildah/stable:latest'
|
|
privileged: true
|
|
environment:
|
|
DEPLOY_TOKEN:
|
|
from_secret: 'DEPLOY_TOKEN'
|
|
commands:
|
|
- 'buildah build -t git.enbewe.de/coding/uffd-ldapd:latest .'
|
|
- 'buildah login -u enbewe -p $DEPLOY_TOKEN git.enbewe.de'
|
|
- 'buildah push git.enbewe.de/coding/uffd-ldapd:latest'
|