mirror of
https://github.com/actions/typescript-action.git
synced 2025-04-05 23:09:47 +00:00
Set failure
This commit is contained in:
10
src/main.ts
10
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();
|
||||
run();
|
||||
|
Reference in New Issue
Block a user