gradle-build-action/src/post.ts

9 lines
153 B
TypeScript
Raw Normal View History

2020-06-13 11:34:07 +00:00
import * as core from "@actions/core";
// Invoked by GitHub Actions
export async function run() {
2020-06-13 11:36:11 +00:00
core.info("POST Gradle Command Action")
2020-06-13 11:34:07 +00:00
}
run();