mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-22 17:12:51 +00:00
44 lines
1.4 KiB
YAML
44 lines
1.4 KiB
YAML
name: "Gradle Build Action"
|
|
description: 'Executes a Gradle build, caching useful state in the GitHub actions cache'
|
|
|
|
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
|
|
|
|
inputs:
|
|
gradle-executable:
|
|
description: Path to the Gradle executable
|
|
required: false
|
|
gradle-version:
|
|
description: Gradle version to use
|
|
required: false
|
|
build-root-directory:
|
|
description: Path to the root directory of the build
|
|
required: false
|
|
arguments:
|
|
description: Gradle command line arguments, see gradle --help
|
|
required: false
|
|
distributions-cache-enabled:
|
|
description: Whether caching downloaded Gradle distributions is enabled or not. Valid values are 'true' (default), 'false', and 'read-only'.
|
|
required: false
|
|
default: true
|
|
gradle-user-home-cache-enabled:
|
|
description: Whether caching of state in Gradle User Home is enabled. Valid values are 'true' (default), 'false', and 'read-only'.
|
|
required: false
|
|
default: true
|
|
project-dot-gradle-cache-enabled:
|
|
description: Whether caching of state in project .gradle dir is enabled. Valid values are 'true' (default), 'false', and 'read-only'.
|
|
required: false
|
|
default: true
|
|
|
|
outputs:
|
|
build-scan-url:
|
|
description: Link to the build scan if any
|
|
|
|
runs:
|
|
using: 'node12'
|
|
main: 'dist/main/index.js'
|
|
post: 'dist/post/index.js'
|
|
post-if: success()
|
|
|
|
branding:
|
|
icon: 'box'
|
|
color: 'gray-dark'
|