Skip to content

Commit 484bc79

Browse files
committed
ci: fixing reference to workflow run id
1 parent b2fbdb1 commit 484bc79

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/pr-reporting.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ jobs:
1111
env:
1212
GH_TOKEN: ${{ github.token }}
1313
steps:
14-
- name: Dump GitHub context
15-
id: github_context_step
16-
run: echo '${{ toJSON(github) }}'
1714
- name: Test Report
1815
uses: dorny/test-reporter@v1
1916
if: always() # run this step even if previous step failed
@@ -24,7 +21,7 @@ jobs:
2421
reporter: jest-junit # Format of test results
2522
- name: Download coverage artifacts with cli
2623
run: |
27-
gh run download ${{ github.context.payload.workflow_run.id }} -n coverage
24+
gh run download ${{ github.event.workflow_run.id }} -n coverage
2825
ls
2926
unzip coverage.zip
3027
- name: Code Coverage Summary Report

0 commit comments

Comments
 (0)