mirror of
https://github.com/gradle/actions
synced 2026-06-24 09:02:44 +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();
|