Skip to content

Commit bca2144

Browse files
committed
Add debug
1 parent 33c7f3a commit bca2144

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/debos.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)