Files
Test/.drone.yml
Chatchai J 717dc32b24
All checks were successful
continuous-integration/drone/push Build is passing
test#5
2022-12-28 12:04:21 +07:00

18 lines
261 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- 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 --data @hello.txt"
...