Skip to content

Commit

Permalink
fix: update to expose report
Browse files Browse the repository at this point in the history
  • Loading branch information
sakulstra committed Nov 13, 2024
1 parent 2fb7840 commit 775700d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ inputs:
default: "false"

outputs:
gas-report:
report:
description: "The html gas report"

runs:
Expand Down
2 changes: 1 addition & 1 deletion dist/action.js
Original file line number Diff line number Diff line change
Expand Up @@ -24027,7 +24027,7 @@ var table = getHtmlGasReport(rootContent, currentContent, {
ignoreUnchanged: (0, import_core.getInput)("ignoreUnchanged") === "true"
});
(0, import_core.setOutput)(
"gas-report",
"report",
`<details><summary>:fuelpump: <strong>Gas report</strong></summary>

${table}
Expand Down
2 changes: 1 addition & 1 deletion dist/action.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -24032,7 +24032,7 @@ var table = getHtmlGasReport(rootContent, currentContent, {
ignoreUnchanged: (0, import_core.getInput)("ignoreUnchanged") === "true"
});
(0, import_core.setOutput)(
"gas-report",
"report",
`<details><summary>:fuelpump: <strong>Gas report</strong></summary>

${table}
Expand Down
2 changes: 1 addition & 1 deletion src/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ const table = getHtmlGasReport(rootContent, currentContent, {
});

setOutput(
"gas-report",
"report",
`<details><summary>:fuelpump: <strong>Gas report</strong></summary>\n\n${table}\n\n</details>`,
);

0 comments on commit 775700d

Please sign in to comment.