File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -52,20 +52,22 @@ jobs:
5252 // (not particularly for this workflow run; artifacts we're looking
5353 // for will only be built from a scheduled (cron) run, and not from
5454 // pull requests)
55- let u_boot_rb1 =
55+ let response =
5656 await github.rest.actions.listArtifactsForRepo({
5757 owner: context.repo.owner,
5858 repo: context.repo.repo,
5959 name: "u-boot-rb1-links",
60- page: 0 ,
60+ page: 1 ,
6161 per_page: 1,
62- }).data.artifacts[0];
62+ });
63+ console.log("response: " + response);
64+ let u_boot_rb1 = response.data.artifacts[0];
6365 let linux_deb =
6466 await github.rest.actions.listArtifactsForRepo({
6567 owner: context.repo.owner,
6668 repo: context.repo.repo,
6769 name: "linux-deb-links",
68- page: 0 ,
70+ page: 1 ,
6971 per_page: 1,
7072 }).data.artifacts[0];
7173 // download both in memory
You can’t perform that action at this time.
0 commit comments