raumstatus/.drone.yml

27 lines
431 B
YAML
Raw Normal View History

2022-09-04 13:46:14 +00:00
---
kind: pipeline
name: default
2022-09-04 13:52:36 +00:00
type: docker
2022-09-04 13:46:14 +00:00
steps:
- name: show directory contents
image: alpine
commands:
- ls
- name: docker bauen
image: plugins/docker
environment:
2022-09-04 13:55:21 +00:00
passwd:
from_secret: dockerhub_password
2022-09-04 13:46:14 +00:00
settings:
username: ctdo
2022-09-04 13:55:21 +00:00
password: $passwd
2022-09-04 13:46:14 +00:00
repo: ctdo/raumstatus
tags: latest
dry_run: true
2022-09-04 13:55:44 +00:00
# when:
# ref:
# - refs/heads/master
2022-09-04 13:46:14 +00:00
2022-09-04 13:52:36 +00:00