Skip to content

Commit

Permalink
more debugging on coverage report posting
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed Jul 25, 2024
1 parent db12884 commit 4454412
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/post-test-results.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
- name: 'Download artifact'
uses: actions/github-script@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
let artifact = null;
let attempts = 0;
Expand All @@ -29,6 +30,7 @@ jobs:
repo: context.repo.repo,
run_id: context.payload.workflow_run.id,
});
console.info("found %d artifacts", allArtifacts.length)
artifact = allArtifacts.data.artifacts.find((artifact) => {
return artifact.name == "coverage-report"
});
Expand Down

0 comments on commit 4454412

Please sign in to comment.