gradle-build-action/src/post.ts

9 lines
151 B
TypeScript
Raw Normal View History

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