Skip to content

Commit

Permalink
Distribution build
Browse files Browse the repository at this point in the history
  • Loading branch information
robvanderleek authored and github-actions[bot] committed Dec 16, 2024
1 parent 3e5b0e7 commit e45ce87
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -48996,7 +48996,7 @@ var require_version = __commonJS({
Object.defineProperty(exports2, "__esModule", { value: true });
exports2.version = void 0;
exports2.version = {
"revision": "2cc0240",
"revision": "3e5b0e7",
"year": "2024"
};
}
Expand Down Expand Up @@ -49126,7 +49126,14 @@ function main() {
exitCode = yield checkChangedFiles(octokit, clBinary);
}
if (!(0, github_2.isPullRequestFromFork)()) {
yield updateReportsBranch(octokit, markdownReport);
try {
yield updateReportsBranch(octokit, markdownReport);
} catch (e) {
console.error("Failed to update reports branch");
if (e instanceof Error) {
console.error(`Reason: ${e.message}`);
}
}
}
fs_1.default.unlinkSync(clBinary);
console.log("Done!");
Expand Down

0 comments on commit e45ce87

Please sign in to comment.