Skip to content

Commit

Permalink
asd
Browse files Browse the repository at this point in the history
  • Loading branch information
goodspark committed Nov 6, 2024
1 parent b6b7b26 commit 9d6f3c3
Showing 1 changed file with 21 additions and 4 deletions.
25 changes: 21 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,26 @@ on:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
val: [1, 2, 3]
steps:
- run: echo asd-${{matrix.val}} > file.txt

- uses: actions/[email protected]
with:
name: asd-${{matrix.val}}
path: file.txt
overwrite: true

report:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/[email protected]
with:
pattern: asd-*

- run: |
echo asd \
zxc \
123 \
${{ '' }}
ls -l asd*/
cat asd*/

0 comments on commit 9d6f3c3

Please sign in to comment.