Skip to content

Commit 03e3c1e

Browse files
committed
Fix2
1 parent 3e11106 commit 03e3c1e

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

dist/index.js

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@ for (const job of jobList.jobs) {
5656
});
5757

5858
const response = await fetch(redirectUrl);
59-
const result = await response.body?.getReader().read();
60-
const jobLog = result?.value as string;
59+
const jobLog = await response.text();
6160

6261
const warningRegex = /warning( .\d+)?:/;
6362
const errorRegex = /error( .\d+)?:/;

0 commit comments

Comments
 (0)