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_legacy.yml
2023-10-04 23:19:30 -05:00

26 lines
323 B
YAML

kind: pipeline
type: podman
name: default
clone:
disable: true
workspace:
base: /tmp
path: /drone
steps:
- name: write
pull: if-not-exists
image: alpine
commands:
- pwd
- echo "hello" > /tmp/greetings.txt
- name: read
pull: if-not-exists
image: alpine
commands:
- pwd
- cat /tmp/greetings.txt