Skip to content

Commit f278ec6

Browse files
committed
Trigger workflow run
1 parent 5a3f4c1 commit f278ec6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import * as path from 'path'
55
try {
66
checkInputs()
77
shell.exec(path.join(__dirname, '../src/entrypoint.sh'))
8-
} catch (e) {
9-
core.setFailed(e)
8+
} catch (err) {
9+
core.setFailed(err)
1010
}
1111

1212
function checkInputs() {
@@ -26,4 +26,4 @@ function checkInputs() {
2626
function setDefault(input: string, value: string) {
2727
const key = 'INPUT_' + input.toUpperCase()
2828
if (!process.env[key]) process.env[key] = value
29-
}
29+
}

0 commit comments

Comments
 (0)