mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-22 09:02:50 +00:00
33e91b639d
- Cache is separate from (but similar to) the wrapper distribution cache - New 'distributions-cache-enabled' flag controls caching of all downloaded distributions (including wrapper distributions) - Deprecated the 'wrapper-cache-enabled' flag for removal in v2
61 lines
2.1 KiB
YAML
61 lines
2.1 KiB
YAML
name: "Gradle Command"
|
|
description: 'Execute Gradle Command Line'
|
|
author: 'Paul Merlin <paul@nospere.org>'
|
|
|
|
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
|
|
|
|
inputs:
|
|
wrapper-directory:
|
|
description: Path to the Gradle Wrapper directory
|
|
required: false
|
|
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, default to 'true'
|
|
required: false
|
|
wrapper-cache-enabled:
|
|
description: Whether caching wrapper installation is enabled or not, default to 'true'
|
|
required: false
|
|
deprecationMessage: Replaced by 'distributions-cache-enabled' which enables caching for all downloaded Gradle distributions
|
|
dependencies-cache-enabled:
|
|
description: Whether caching dependencies is enabled or not, default to 'false'
|
|
required: false
|
|
dependencies-cache-key:
|
|
description: Globs of files to hash in the build root directory, separated by new lines, use best-effort if unset
|
|
required: false
|
|
dependencies-cache-exact:
|
|
description: Whether to restore only if exact match, default to 'false'
|
|
required: false
|
|
configuration-cache-enabled:
|
|
description: Whether caching build configuration is enabled or not, default to 'false'
|
|
required: false
|
|
configuration-cache-key:
|
|
description: Globs of files to hash in the build root directory, separated by new lines, use best-effort if unset
|
|
required: false
|
|
configuration-cache-exact:
|
|
description: Whether to restore only if exact match, default to 'false'
|
|
required: false
|
|
|
|
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'
|