From a3a044de7282bb4822966d5e0c7a2b8376f314db Mon Sep 17 00:00:00 2001 From: Danny McCormick Date: Wed, 10 Jul 2019 11:02:50 -0400 Subject: [PATCH] Set failure --- src/main.ts | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/main.ts b/src/main.ts index 195af81..ffce150 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,8 +1,12 @@ import * as core from '@actions/core'; async function run() { - const myInput = core.getInput('myInput'); - core.debug(`Hello ${myInput}`) + try { + const myInput = core.getInput('myInput'); + core.debug(`Hello ${myInput}`); + } catch (error) { + core.setFailed(error.message); + } } -run(); \ No newline at end of file +run();