27 lines
428 B
YAML
27 lines
428 B
YAML
---
|
|
kind: pipeline
|
|
name: default
|
|
type: docker
|
|
|
|
steps:
|
|
- name: show directory contents
|
|
image: alpine
|
|
commands:
|
|
- ls
|
|
- name: docker bauen
|
|
image: plugins/docker
|
|
environment:
|
|
passwd:
|
|
from_secret: dockerhub_password
|
|
settings:
|
|
username: ctdo
|
|
password: $passwd
|
|
repo: ctdo/raumstatus
|
|
tags: latest
|
|
dry_run: true
|
|
when:
|
|
ref:
|
|
- refs/heads/master
|
|
|
|
|