From 717dc32b243c51e89e49801e3c3fdfbac7b6aa91 Mon Sep 17 00:00:00 2001 From: Chatchai J Date: Wed, 28 Dec 2022 12:04:21 +0700 Subject: [PATCH] test#5 --- .drone.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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" + ...