gradle-build-action/action.yml

45 lines
1.4 KiB
YAML
Raw Normal View History

name: "Gradle Build Action"
description: 'Executes a Gradle build, caching useful state in the GitHub actions cache'
2019-09-20 17:23:07 -04:00
2019-09-21 10:01:53 -04:00
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
2019-09-20 17:23:07 -04:00
2019-09-20 17:06:59 -04:00
inputs:
2019-09-21 10:01:53 -04: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 17:23:07 -04:00
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
2021-09-05 21:55:49 -04:00
gradle-cache-enabled:
description: Whether caching of Gradle User Home and project .gradle directory is enabled. Valid values are 'true' (default), 'false', and 'read-only'.
required: false
default: true
workflow-job-context:
description: Used to uniquely identify the current job invocation. Defaults to the matrix values for this job; this should not be overridden by users.
required: false
default: ${{ toJSON(matrix) }}
2019-09-20 17:23:07 -04:00
2019-09-21 10:01:53 -04:00
outputs:
build-scan-url:
description: Link to the build scan if any
2019-09-20 17:06:59 -04:00
runs:
using: 'node12'
2020-06-13 07:30:20 -04:00
main: 'dist/main/index.js'
2020-06-13 07:34:07 -04:00
post: 'dist/post/index.js'
post-if: success()
2019-09-21 10:01:53 -04:00
branding:
icon: 'box'
color: 'gray-dark'