gradle-build-action/src/post.ts
2020-06-13 13:36:11 +02:00

8 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();