25 lines
312 B
YAML
25 lines
312 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
clone:
|
|
disable: true
|
|
|
|
workspace:
|
|
path: /drone/custom/path
|
|
|
|
steps:
|
|
- name: write
|
|
pull: if-not-exists
|
|
image: alpine
|
|
commands:
|
|
- pwd
|
|
- echo "hello" > greetings.txt
|
|
|
|
- name: read
|
|
pull: if-not-exists
|
|
image: alpine
|
|
commands:
|
|
- pwd
|
|
- cat greetings.txt
|