diff --git a/.drone.yml b/.drone.yml index fe2e059..8354339 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,8 +4,14 @@ type: docker name: default steps: -- name: first +- name: second + image: bash + commands: + - "echo 'HELLOWORLD#1' > hello.txt" + +- name: last image: curlimages/curl commands: - - "curl -X POST http://cc2.cjv6.net:7777/documents -d'This-is-a-test'" + - "curl -X POST http://cc2.cjv6.net:7777/documents --data @hello.txt" + ...