1 files changed, 22 insertions(+), 0 deletions(-)
A .drone.yml
A .drone.yml => .drone.yml +22 -0
@@ 0,0 1,22 @@
+kind: pipeline
+type: docker
+name: client
+
+steps:
+ - name: greeting
+ image: alpine
+ commands:
+ - echo hello
+ - echo world
+
+---
+kind: pipeline
+type: docker
+name: server
+
+steps:
+ - name: greeting
+ image: alpine
+ commands:
+ - echo hello
+ - echo world<
\ No newline at end of file