mirror of
https://github.com/ButlerLogic/action-autotag.git
synced 2024-11-10 10:21:08 +07:00
15 lines
246 B
JavaScript
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()
|