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 5a3f4c1 commit f278ec6Copy full SHA for f278ec6
src/main.ts
@@ -5,8 +5,8 @@ import * as path from 'path'
5
try {
6
checkInputs()
7
shell.exec(path.join(__dirname, '../src/entrypoint.sh'))
8
-} catch (e) {
9
- core.setFailed(e)
+} catch (err) {
+ core.setFailed(err)
10
}
11
12
function checkInputs() {
@@ -26,4 +26,4 @@ function checkInputs() {
26
function setDefault(input: string, value: string) {
27
const key = 'INPUT_' + input.toUpperCase()
28
if (!process.env[key]) process.env[key] = value
29
-}
+}
0 commit comments