Skip to content

Commit

Permalink
Debugging 500 status code
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-aravind committed Feb 7, 2024
1 parent d6f74b0 commit be41989
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
Original file line number Diff line number Diff line change
Expand Up @@ -37537,7 +37537,7 @@ async function run() {
console.log('Response:', response.data);
core.setOutput('response', response.data);
} catch (error) {
console.log('Error:', response.message)
console.log('Error:', error.message)
core.setFailed(error.message);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ async function run() {
console.log('Response:', response.data);
core.setOutput('response', response.data);
} catch (error) {
console.log('Error:', response.message)
console.log('Error:', error.message)
core.setFailed(error.message);
}
}
Expand Down

0 comments on commit be41989

Please sign in to comment.