gradle-build-action/src/post.ts

9 lines
151 B
TypeScript
Raw Normal View History

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