Skip to content

Commit 0f2106f

Browse files
committed
fix typo in run-id for artifact download during test result collection
1 parent a13bf8e commit 0f2106f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test-results.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,28 +19,28 @@ jobs:
1919
- name: Download Results for Matlab R2022b
2020
uses: actions/download-artifact@v4
2121
with:
22-
run_id: ${{ github.event.workflow_run.id }}
22+
run-id: ${{ github.event.workflow_run.id }}
2323
name: test-results-matlab-R2022b
2424
path: test-results/matlab-R2022b
2525

2626
- name: Download Results for Matlab Latest
2727
uses: actions/download-artifact@v4
2828
with:
29-
run_id: ${{ github.event.workflow_run.id }}
29+
run-id: ${{ github.event.workflow_run.id }}
3030
name: test-results-matlab-latest
3131
path: test-results/matlab-latest
3232

3333
- name: Download Results for Octave
3434
uses: actions/download-artifact@v4
3535
with:
36-
run_id: ${{ github.event.workflow_run.id }}
36+
run-id: ${{ github.event.workflow_run.id }}
3737
name: test-results-octave
3838
path: test-results/octave
3939

4040
- name: Download Event File
4141
uses: actions/download-artifact@v4
4242
with:
43-
run_id: ${{ github.event.workflow_run.id }}
43+
run-id: ${{ github.event.workflow_run.id }}
4444
name: event-file
4545
path: event-file
4646

0 commit comments

Comments
 (0)