gradle-build-action/action.yml

43 lines
1.1 KiB
YAML
Raw Normal View History

2019-09-21 10:01:53 -04:00
name: "Gradle Command"
description: 'Execute Gradle Command Line'
author: 'Paul Merlin <paul@nospere.org>'
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
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:
2019-09-20 17:23:07 -04:00
description: Gradle command line arguments, see gradle --help
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:
2020-06-15 08:28:57 -04:00
description: Whether to restore only if exact match, default to 'false'
required: false
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'