diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2025-07-03 21:12:48 +0200 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-07-05 12:01:09 +0200 |
commit | a4521e99e902e226c8dc281822fca363191def86 (patch) | |
tree | ef3d9f81b018df13013f1f3e0f18956d12d8f743 /test/asset/artifact | |
parent | 518998bebf22b6bb92dd246026fce62ad57a0b0b (diff) |
Directories as artifacts
Changelog: Support whole directories as artifacts
Diffstat (limited to 'test/asset/artifact')
-rw-r--r-- | test/asset/artifact/minici.yaml | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/test/asset/artifact/minici.yaml b/test/asset/artifact/minici.yaml index 065ae84..7204bb3 100644 --- a/test/asset/artifact/minici.yaml +++ b/test/asset/artifact/minici.yaml @@ -3,15 +3,23 @@ job generate: shell: - echo "content 1" > f1 - - mkdir subdir - - echo "content 2" > subdir/f2 + - 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: subdir/f2 + path: dir/f2 artifact third: path: f3 + + artifact dir: + path: dir + + artifact sdir: + path: dir/subdir |