New toolkit

This commit is contained in:
Danny McCormick
2019-07-22 14:15:40 -04:00
parent 3554c901d4
commit fce79f8f7c
57 changed files with 7996 additions and 8064 deletions

View File

@ -1,12 +1,12 @@
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();
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();