mirror of
https://hub.gitmirror.com/https://github.com/gradle/gradle-build-action
synced 2025-10-28 08:30:07 +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();
|