From 3351fe7d4020a1e5a7674883dd5e16fb324e25eb Mon Sep 17 00:00:00 2001 From: tastytea Date: Sun, 28 Apr 2019 18:18:14 +0200 Subject: [PATCH] Converted drone config to new format. --- .drone.yml | 32 ++++++++++++++++++++------------ 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/.drone.yml b/.drone.yml index 93265c3a0..697382fe2 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,14 +1,22 @@ -pipeline: - check: - image: chaoslab/repoman - pull: true - commands: - repoman full --include-dev --xmlparse - notify: - when: - status: [ changed, failure ] - image: drillster/drone-email - pull: true +kind: pipeline +name: check + +steps: +- name: repoman + image: chaoslab/repoman + pull: always + commands: + - repoman full --include-dev --xmlparse + +- name: notify + image: drillster/drone-email + pull: always + when: + status: [ changed, failure ] + settings: host: cryptoparty-celle.de - secrets: [ email_username, email_password ] from: drone@tzend.de + username: + from-secret: email_username + password: + from_secret: email_password