typescript-action/src/main.ts

13 lines
222 B
TypeScript
Raw Normal View History

2019-07-22 18:15:40 +00:00
import * as core from '@actions/core';
async function run() {
try {
const myInput = core.getInput('myInput');
core.debug(`Hello ${myInput}`);
} catch (error) {
core.setFailed(error.message);
}
}
run();