mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-23 00:30:57 -05:00
8 lines
151 B
TypeScript
8 lines
151 B
TypeScript
import * as core from '@actions/core'
|
|
|
|
// Invoked by GitHub Actions
|
|
export async function run() {
|
|
core.info('POST Gradle Command Action')
|
|
}
|
|
|
|
run()
|