Skip to content

Commit edf2efc

Browse files
committed
asd
1 parent b6b7b26 commit edf2efc

File tree

1 file changed

+23
-4
lines changed

1 file changed

+23
-4
lines changed

.github/workflows/tests.yml

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,28 @@ on:
99
jobs:
1010
test:
1111
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
val: [1, 2, 3]
1215
steps:
1316
- run: |
14-
echo asd \
15-
zxc \
16-
123 \
17-
${{ '' }}
17+
mkdir -p a/b/c
18+
echo asd-${{matrix.val}} > a/b/c/file.txt
19+
20+
- uses: actions/[email protected]
21+
with:
22+
name: asd-${{matrix.val}}
23+
path: a/b/c/file.txt
24+
overwrite: true
25+
26+
report:
27+
runs-on: ubuntu-latest
28+
needs: test
29+
steps:
30+
- uses: actions/[email protected]
31+
with:
32+
pattern: asd-*
33+
34+
- run: |
35+
ls -l asd*/
36+
cat asd*/*

0 commit comments

Comments
 (0)