autotag/lib/main.js

16 lines
287 B
JavaScript
Raw Normal View History

2019-09-03 04:34:28 +07:00
// import * as core from '@actions/core';
const core = require('@actions/core')
2019-09-03 04:11:57 +07:00
async function run() {
console.log(process.env)
try {
const myInput = core.getInput('myInput')
core.debug(`Hello ${myInput}`)
} catch (error) {
core.setFailed(error.message)
}
}
run()