From ed4a56c5854a9849fc19efd620b3b5c28a83fb06 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 8 Apr 2019 11:50:56 +0200 Subject: [PATCH] Fix .drone.yml syntax Signed-off-by: Morris Jobke --- .drone.yml | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/.drone.yml b/.drone.yml index fcc45b6b2..eb7cdf769 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,8 +1,18 @@ -pipeline: - documentation: - image: nextcloudci/documentation:documentation-9 - commands: - - npm install svgexport -g - - pip2 install -r requirements.txt - - make all -branches: [ master, stable* ] +kind: pipeline +name: documentation + +steps: +- name: documentation + image: nextcloudci/documentation:documentation-9 + commands: + - npm install svgexport -g + - pip2 install -r requirements.txt + - make all + +trigger: + branch: + - master + - stable* + event: + - pull_request + - push