mirror of
https://github.com/actions/setup-java
synced 2024-11-13 00:52:39 +00:00
9 lines
151 B
TypeScript
9 lines
151 B
TypeScript
|
import * as core from '@actions/core';
|
||
|
|
||
|
async function run() {
|
||
|
const myInput = core.getInput('myInput');
|
||
|
core.debug(`Hello ${myInput}`);
|
||
|
}
|
||
|
|
||
|
run();
|