mirror of
https://github.com/gradle/gradle-build-action.git
synced 2025-02-23 04:21:07 -05:00
13 lines
222 B
TypeScript
13 lines
222 B
TypeScript
|
import * as core from '@actions/core';
|
||
|
|
||
|
async function run() {
|
||
|
try {
|
||
|
const myInput = core.getInput('myInput');
|
||
|
core.debug(`Hello ${myInput}`);
|
||
|
} catch (error) {
|
||
|
core.setFailed(error.message);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
run();
|