From b55edb96ae0f45d9dce64d6f2e78a9b8d3ff4ef9 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sat, 30 Jan 2021 17:53:05 +0100 Subject: examples: extend with output --- examples/bar.yml | 4 +++- examples/foo.yml | 4 +++- examples/ls.yml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/examples/bar.yml b/examples/bar.yml index 08be4a5..9d21d4a 100644 --- a/examples/bar.yml +++ b/examples/bar.yml @@ -1,5 +1,7 @@ tasks: build: + output: + - 'bar' run: | - echo bar + echo bar > bar diff --git a/examples/foo.yml b/examples/foo.yml index 97d273a..c7deecb 100644 --- a/examples/foo.yml +++ b/examples/foo.yml @@ -1,4 +1,6 @@ tasks: build: + output: + - 'foo' run: | - echo foo + echo foo > foo diff --git a/examples/ls.yml b/examples/ls.yml index adc4944..ba752d2 100644 --- a/examples/ls.yml +++ b/examples/ls.yml @@ -4,4 +4,4 @@ tasks: - 'foo:build' - 'bar:build' run: | - ls + ls -lh / -- cgit v1.2.3