mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-22 08:11:07 -05:00
07023d3e3e
Moved reading of all input parameters into a common source: `input-params.ts`. This centralized all input parameter reads, and allowed an improved implementation of reading boolean parameters. In particular, the implementation now provides a default value for a boolean input parameter that isn't declared for an action.
34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
import * as core from '@actions/core'
|
|
|
|
import * as setupGradle from './setup-gradle'
|
|
import * as execution from './execution'
|
|
import * as provisioner from './provision'
|
|
import * as layout from './repository-layout'
|
|
import * as params from './input-params'
|
|
|
|
/**
|
|
* The main entry point for the action, called by Github Actions for the step.
|
|
*/
|
|
export async function run(): Promise<void> {
|
|
try {
|
|
// Configure Gradle environment (Gradle User Home)
|
|
await setupGradle.setup()
|
|
|
|
// Download and install Gradle if required
|
|
const executable = await provisioner.provisionGradle()
|
|
|
|
// Only execute if arguments have been provided
|
|
const args: string[] = params.getArguments()
|
|
if (args.length > 0) {
|
|
const buildRootDirectory = layout.buildRootDirectory()
|
|
await execution.executeGradleBuild(executable, buildRootDirectory, args)
|
|
}
|
|
} catch (error) {
|
|
core.setFailed(String(error))
|
|
if (error instanceof Error && error.stack) {
|
|
core.info(error.stack)
|
|
}
|
|
}
|
|
}
|
|
|
|
run()
|