2021-08-17 15:31:28 +00:00
|
|
|
name: "Gradle Build Action"
|
2021-08-19 19:03:18 +00:00
|
|
|
description: 'Executes a Gradle build, caching useful state in the GitHub actions cache'
|
2019-09-20 21:23:07 +00:00
|
|
|
|
2019-09-21 14:01:53 +00:00
|
|
|
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
|
2019-09-20 21:23:07 +00:00
|
|
|
|
2019-09-20 21:06:59 +00:00
|
|
|
inputs:
|
2019-09-21 14:01:53 +00:00
|
|
|
wrapper-directory:
|
|
|
|
description: Path to the Gradle Wrapper directory
|
|
|
|
required: false
|
2021-07-07 18:45:24 +00:00
|
|
|
deprecationMessage: Use 'gradle-executable' to point to a gradlew[.bat] file in a non-default location
|
2019-09-21 14:01:53 +00:00
|
|
|
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:
|
2019-09-20 21:23:07 +00:00
|
|
|
description: Gradle command line arguments, see gradle --help
|
|
|
|
required: false
|
2021-07-08 18:22:48 +00:00
|
|
|
distributions-cache-enabled:
|
|
|
|
description: Whether caching downloaded Gradle distributions is enabled or not, default to 'true'
|
|
|
|
required: false
|
2021-07-20 17:44:56 +00:00
|
|
|
default: true
|
2020-06-15 13:41:09 +00:00
|
|
|
wrapper-cache-enabled:
|
|
|
|
description: Whether caching wrapper installation is enabled or not, default to 'true'
|
|
|
|
required: false
|
2021-07-20 17:44:56 +00:00
|
|
|
default: true
|
2021-07-08 18:22:48 +00:00
|
|
|
deprecationMessage: Replaced by 'distributions-cache-enabled' which enables caching for all downloaded Gradle distributions
|
2020-06-15 12:30:25 +00:00
|
|
|
dependencies-cache-enabled:
|
2020-06-15 13:57:09 +00:00
|
|
|
description: Whether caching dependencies is enabled or not, default to 'false'
|
2020-06-15 12:30:25 +00:00
|
|
|
required: false
|
2021-07-20 17:44:56 +00:00
|
|
|
default: false
|
2020-06-15 10:59:55 +00:00
|
|
|
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
|
2020-06-15 11:05:25 +00:00
|
|
|
dependencies-cache-exact:
|
2020-06-15 12:28:57 +00:00
|
|
|
description: Whether to restore only if exact match, default to 'false'
|
2020-06-15 11:05:25 +00:00
|
|
|
required: false
|
2021-07-20 17:44:56 +00:00
|
|
|
default: false
|
2020-06-15 13:58:20 +00:00
|
|
|
configuration-cache-enabled:
|
|
|
|
description: Whether caching build configuration is enabled or not, default to 'false'
|
|
|
|
required: false
|
2021-07-20 17:44:56 +00:00
|
|
|
default: false
|
2020-06-15 13:58:20 +00:00
|
|
|
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
|
2021-07-20 17:44:56 +00:00
|
|
|
default: false
|
2021-08-17 22:15:28 +00:00
|
|
|
cache-read-only:
|
|
|
|
description: When 'true', existing entries will be read from the cache but no entries will be written
|
|
|
|
required: false
|
|
|
|
default: false
|
2019-09-20 21:23:07 +00:00
|
|
|
|
2019-09-21 14:01:53 +00:00
|
|
|
outputs:
|
|
|
|
build-scan-url:
|
|
|
|
description: Link to the build scan if any
|
|
|
|
|
2019-09-20 21:06:59 +00:00
|
|
|
runs:
|
|
|
|
using: 'node12'
|
2020-06-13 11:30:20 +00:00
|
|
|
main: 'dist/main/index.js'
|
2020-06-13 11:34:07 +00:00
|
|
|
post: 'dist/post/index.js'
|
|
|
|
post-if: success()
|
2019-09-21 14:01:53 +00:00
|
|
|
|
|
|
|
branding:
|
|
|
|
icon: 'box'
|
|
|
|
color: 'gray-dark'
|