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 + ...