Skip to content

Commit

Permalink
Adding debug on top of de867eb
Browse files Browse the repository at this point in the history
  • Loading branch information
callms committed Aug 3, 2023
1 parent de867eb commit 49c91fe
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions action.js
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,10 @@ exports.action = async function action() {
try {
return await actionImpl();
} catch (error) {
console.log("Caught error in action");
console.error(error);
console.error(error.value);
console.error(JSON.stringify(error.value));
core.setFailed(error.message);
throw error;
}
Expand Down

0 comments on commit 49c91fe

Please sign in to comment.