Initial cleanup

This commit is contained in:
Corey Butler
2019-09-02 16:11:57 -05:00
parent a4a60d0d53
commit 1abc96470f
8 changed files with 33 additions and 186 deletions

14
lib/main.js Normal file
View File

@ -0,0 +1,14 @@
import * as core from '@actions/core';
async function run() {
console.log(process.env)
try {
const myInput = core.getInput('myInput')
core.debug(`Hello ${myInput}`)
} catch (error) {
core.setFailed(error.message)
}
}
run()