From 7fe46dc195f43a83a4f8c05eec415161be5d663c Mon Sep 17 00:00:00 2001 From: Giles Date: Wed, 29 Jul 2020 20:14:56 +0100 Subject: [PATCH] added alpine step --- .drone/.drone.jsonnet | 9 ++++++++- .drone/.drone.yml | 4 ++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.drone/.drone.jsonnet b/.drone/.drone.jsonnet index 637ab8f..81de91a 100644 --- a/.drone/.drone.jsonnet +++ b/.drone/.drone.jsonnet @@ -1,11 +1,18 @@ [ { - name:'test pipe', + name: 'test pipe', kind: 'pipeline', type: 'docker', clone: { disable: false, depth: 0, }, + steps: [ + { + name: 'step', + image: 'alpine', + }, + + ], } ] \ No newline at end of file diff --git a/.drone/.drone.yml b/.drone/.drone.yml index f40b3bf..0867a68 100644 --- a/.drone/.drone.yml +++ b/.drone/.drone.yml @@ -7,4 +7,8 @@ platform: os: linux arch: amd64 +steps: +- name: step + image: alpine + ...