gradle-build-action/src/post.ts

9 lines
166 B
TypeScript
Raw Normal View History

2020-06-13 19:44:30 +08:00
import * as core from '@actions/core'
2020-06-13 19:34:07 +08:00
// Invoked by GitHub Actions
2020-06-13 19:54:27 +08:00
export async function run(): Promise<void> {
2020-06-13 19:44:30 +08:00
core.info('POST Gradle Command Action')
2020-06-13 19:34:07 +08:00
}
2020-06-13 19:44:30 +08:00
run()