Skip to content

Commit

Permalink
chore: improve error logging
Browse files Browse the repository at this point in the history
  • Loading branch information
clechasseur committed Jan 7, 2025
1 parent d54a1fd commit 5ef552f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ async function main(): Promise<void> {

await run(actionInput);
} catch (error) {
core.setFailed((<Error>error).message);
core.setFailed(<Error>error);
}
}

Expand Down

0 comments on commit 5ef552f

Please sign in to comment.