mirror of
https://github.com/actions/setup-java.git
synced 2026-05-28 04:52:09 +08: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();
|