We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6b7b26 commit edf2efcCopy full SHA for edf2efc
.github/workflows/tests.yml
@@ -9,9 +9,28 @@ on:
9
jobs:
10
test:
11
runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ val: [1, 2, 3]
15
steps:
16
- run: |
- echo asd \
- zxc \
- 123 \
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
31
32
+ pattern: asd-*
33
34
+ - run: |
35
+ ls -l asd*/
36
+ cat asd*/*
0 commit comments