We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d77fa2 commit 5f12f93Copy full SHA for 5f12f93
src/main.ts
@@ -6,7 +6,8 @@ try {
6
checkInputs()
7
execFileSync(path(__dirname, 'entrypoint.sh'))
8
} catch (err) {
9
- setFailed(err)
+ console.error(err)
10
+ setFailed(err instanceof Error ? err.message : err)
11
}
12
13
function checkInputs() {
0 commit comments