Skip to content

Commit daab2ed

Browse files
committed
Priority of await
1 parent cf966db commit daab2ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/debos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@ jobs:
6565
6666
let u_boot_rb1 = response.data.artifacts[0];
6767
let linux_deb =
68-
await github.rest.actions.listArtifactsForRepo({
68+
(await github.rest.actions.listArtifactsForRepo({
6969
owner: context.repo.owner,
7070
repo: context.repo.repo,
7171
name: "linux-deb-links",
7272
page: 1,
7373
per_page: 1,
74-
}).data.artifacts[0];
74+
})).data.artifacts[0];
7575
console.log("Response3:", JSON.stringify(linux_deb, null, 2));
7676
console.log("id:", JSON.stringify(linux_deb.id, null, 2));
7777
// download both in memory

0 commit comments

Comments
 (0)