mirror of
https://github.com/gradle/actions.git
synced 2025-04-21 18:29:18 +08:00
9 lines
153 B
TypeScript
9 lines
153 B
TypeScript
import * as core from "@actions/core";
|
|
|
|
// Invoked by GitHub Actions
|
|
export async function run() {
|
|
core.info("POST Gradle Command Action")
|
|
}
|
|
|
|
run();
|