Skip to content

Commit

Permalink
Reorder inputs in metadata file for v2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bigdaz committed Dec 31, 2021
1 parent 3609b77 commit 3edb3cb
Showing 1 changed file with 14 additions and 15 deletions.
29 changes: 14 additions & 15 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,13 @@
name: "Gradle Build Action"
description: 'Executes a Gradle build, caching useful state in the GitHub actions cache'
description: 'Configures Gradle for use in GitHub actions, 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 (supports multi-line input)
required: false

cache-disabled:
description: When 'true', all caching is disabled. No entries will be written to or read from the cache.
required: false
Expand All @@ -42,12 +30,23 @@ inputs:
gradle-home-cache-excludes:
description: Paths within Gradle User Home to exclude from cache.
required: false

# e.g. Use the following setting to prevent the local build cache from being saved/restored
# gradle-home-cache-excludes: |
# ["caches/build-cache-1"]

# EXPERIMENTAL & INTERNAL CONFIGURATION PROPERTIES
arguments:
description: Gradle command line arguments (supports multi-line input)
required: false

build-root-directory:
description: Path to the root directory of the build
required: false

gradle-executable:
description: Path to the Gradle executable
required: false

# EXPERIMENTAL & INTERNAL ACTION INPUTS
# The following action properties allow fine-grained tweaking of the action caching behaviour.
# These properties are not designed for production use, and may change without notice in a subsequent release of `gradle-build-action`.
# Use at your own risk!
Expand Down

0 comments on commit 3edb3cb

Please sign in to comment.