autotag/lib/main.js
2019-09-02 16:11:57 -05:00

15 lines
246 B
JavaScript

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()