blob: 065ae84a980d98587eef46531f935302daa0e32b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
job generate:
checkout: null
shell:
- echo "content 1" > f1
- mkdir subdir
- echo "content 2" > subdir/f2
- echo "content 3" > f3
artifact first:
path: f1
artifact second:
path: subdir/f2
artifact third:
path: f3
|