We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf966db commit daab2edCopy full SHA for daab2ed
.github/workflows/debos.yml
@@ -65,13 +65,13 @@ jobs:
65
66
let u_boot_rb1 = response.data.artifacts[0];
67
let linux_deb =
68
- await github.rest.actions.listArtifactsForRepo({
+ (await github.rest.actions.listArtifactsForRepo({
69
owner: context.repo.owner,
70
repo: context.repo.repo,
71
name: "linux-deb-links",
72
page: 1,
73
per_page: 1,
74
- }).data.artifacts[0];
+ })).data.artifacts[0];
75
console.log("Response3:", JSON.stringify(linux_deb, null, 2));
76
console.log("id:", JSON.stringify(linux_deb.id, null, 2));
77
// download both in memory
0 commit comments