Skip to content

Commit f584085

Browse files
committed
test
Signed-off-by: CrazyMax <[email protected]>
1 parent 1eae8ae commit f584085

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
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/main.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,13 +214,16 @@ actionsToolkit.run(
214214
});
215215
}
216216

217-
await GitHub.writeBuildSummary({
217+
const summaryOpts = {
218218
exportRes: exportRes,
219219
uploadRes: uploadRes,
220220
inputs: stateHelper.summaryInputs,
221221
driver: stateHelper.builderDriver,
222222
endpoint: stateHelper.builderEndpoint
223-
});
223+
};
224+
core.debug(`summaryOpts: ${JSON.stringify(summaryOpts, null, 2)}`);
225+
226+
await GitHub.writeBuildSummary(summaryOpts);
224227
} catch (e) {
225228
core.warning(e.message);
226229
}

0 commit comments

Comments
 (0)