mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-26 18:21:05 -05:00
9 lines
154 B
TypeScript
9 lines
154 B
TypeScript
|
import * as core from "@actions/core";
|
||
|
|
||
|
// Invoked by GitHub Actions
|
||
|
export async function run() {
|
||
|
core.debug("POST Gradle Command Action")
|
||
|
}
|
||
|
|
||
|
run();
|