mirror of
https://gitea.com/actions/setup-java.git
synced 2025-04-21 00:05:41 +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();
|