File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -53,17 +53,19 @@ jobs:
53
53
steps :
54
54
- name : Checkout Repository
55
55
uses : actions/checkout@v3
56
-
57
56
- name : Build sketches
58
57
run : |
59
58
bash .github/scripts/tests_build.sh -c -t ${{matrix.chip}} -i ${{matrix.chunks}} -m ${{env.MAX_CHUNKS}}
59
+ - name : List files in the repository
60
+ run : |
61
+ ls ${{ github.workspace }}
60
62
- name : Upload ${{matrix.chip}}-${{matrix.chunks}} artifacts
61
63
uses : actions/upload-artifact@v3
62
64
with :
63
65
name : ${{matrix.chip}}-${{matrix.chunks}}.artifacts
64
66
path : |
65
- ${{ github.workspace }} /tests/*/build*/*.bin
66
- ${{ github.workspace }} /tests/*/build*/*.json
67
+ /tests/*/build*/*.bin
68
+ /tests/*/build*/*.json
67
69
if-no-files-found : error
68
70
Test :
69
71
needs : [gen_chunks, Build]
You can’t perform that action at this time.
0 commit comments