You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
643 B
30 lines
643 B
---
|
|
jobs:
|
|
- name: create-and-consume
|
|
public: true
|
|
plan:
|
|
- task: make-a-file
|
|
config:
|
|
platform: linux
|
|
image_resource:
|
|
type: registry-image
|
|
source: { repository: busybox }
|
|
run:
|
|
path: sh
|
|
args:
|
|
- -exc
|
|
- ls -la; echo "Created a file on $(date)" > ./files/created_file
|
|
outputs:
|
|
- name: files
|
|
- task: consume-the-file
|
|
config:
|
|
platform: linux
|
|
image_resource:
|
|
type: registry-image
|
|
source: { repository: busybox }
|
|
inputs:
|
|
- name: files
|
|
run:
|
|
path: cat
|
|
args:
|
|
- ./files/created_file
|