From 09f1c968cda1b1f6f5f89c180c1937d906ee48ec Mon Sep 17 00:00:00 2001 From: Michael Ekstrand Date: Fri, 26 Jul 2024 09:36:15 -0400 Subject: [PATCH] fix artifact reference --- .github/workflows/post-test-results.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/post-test-results.yml b/.github/workflows/post-test-results.yml index a811840c7..6236403f1 100644 --- a/.github/workflows/post-test-results.yml +++ b/.github/workflows/post-test-results.yml @@ -32,7 +32,7 @@ jobs: name: "coverage-report" }); console.info("found %d artifacts", allArtifacts.data.artifacts.length) - artifact = allArtifacts[0]; + artifact = allArtifacts.data.artifacts[0]; if (!artifact) { console.info('could not find artifact, waiting and trying again') await new Promise((ok) => setTimeout(() => ok(), 15000));