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:
accesstoken:
from_secret: accesstoken
settings:
username: ctdo
password: $accesstoken
repo: ctdo/raumstatus
tags: latest
dry_run: true
when:
ref:
- refs/heads/master
2022-09-04 13:52:36 +00:00