This repository has been archived on 2025-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
drone-runner-podman/engine/testdata/workspace_custom.yml
2019-10-22 15:21:57 -07:00

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