diff options
Diffstat (limited to 'test/asset/artifact/minici.yaml')
-rw-r--r-- | test/asset/artifact/minici.yaml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/test/asset/artifact/minici.yaml b/test/asset/artifact/minici.yaml new file mode 100644 index 0000000..7204bb3 --- /dev/null +++ b/test/asset/artifact/minici.yaml @@ -0,0 +1,25 @@ +job generate: + checkout: null + + shell: + - echo "content 1" > f1 + - mkdir -p dir/subdir + - echo "content 2" > dir/f2 + - echo "content a" > dir/fa + - echo "content b" > dir/subdir/fb + - echo "content 3" > f3 + + artifact first: + path: f1 + + artifact second: + path: dir/f2 + + artifact third: + path: f3 + + artifact dir: + path: dir + + artifact sdir: + path: dir/subdir |