Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ca35f9f

Browse files
committedMar 1, 2023
fix upload-artifact paths
1 parent 788a164 commit ca35f9f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed
 

‎.github/workflows/hil.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
steps:
2727
- name: Checkout Repository
2828
uses: actions/checkout@v3
29-
29+
3030
- name: Generate Chunks matrix
3131
id: gen-chunks
3232
run: |
@@ -49,7 +49,6 @@ jobs:
4949
matrix:
5050
chip: ['esp32', 'esp32s2', 'esp32s3', 'esp32c3']
5151
chunks: ${{fromJson(needs.gen_chunks.outputs.chunks)}}
52-
5352
steps:
5453
- name: Checkout Repository
5554
uses: actions/checkout@v3
@@ -61,8 +60,8 @@ jobs:
6160
with:
6261
name: ${{matrix.chip}}-${{matrix.chunks}}.artifacts
6362
path: |
64-
/tests/*/build*/*.bin
65-
/tests/*/build*/*.json
63+
tests/*/build*/*.bin
64+
tests/*/build*/*.json
6665
if-no-files-found: error
6766
Test:
6867
needs: [gen_chunks, Build]

0 commit comments

Comments
 (0)
Please sign in to comment.