Remove support for wrapper-directory

In the (rare) case where using a non-default Gradle wrapper is required,
the `gradle-executable` paramater can be used.
This commit is contained in:
Daz DeBoer 2021-06-24 13:33:39 -07:00
parent 76a33e31af
commit 5c01db8918
No known key found for this signature in database
GPG key ID: 70F584A28F2230E8
4 changed files with 16 additions and 23 deletions

View file

@ -60,14 +60,6 @@ If you need to pass environment variables, simply use the GitHub Actions workflo
build-root-directory: some/subdirectory build-root-directory: some/subdirectory
``` ```
## Use a Gradle wrapper from a different directory
```yaml
- uses: eskatos/gradle-command-action@v1
with:
wrapper-directory: path/to/wrapper-directory
```
## Use a specific `gradle` executable ## Use a specific `gradle` executable
```yaml ```yaml
@ -76,7 +68,15 @@ If you need to pass environment variables, simply use the GitHub Actions workflo
gradle-executable: path/to/gradle gradle-executable: path/to/gradle
``` ```
## Setup and use a declared Gradle version ## Use a Gradle wrapper from a different directory
```yaml
- uses: eskatos/gradle-command-action@v1
with:
gradle-executable: path/to/gradlew
```
## Download and use a specified Gradle version
```yaml ```yaml
- uses: eskatos/gradle-command-action@v1 - uses: eskatos/gradle-command-action@v1

View file

@ -5,9 +5,6 @@ author: 'Paul Merlin <paul@nospere.org>'
# https://help.github.com/en/articles/metadata-syntax-for-github-actions # https://help.github.com/en/articles/metadata-syntax-for-github-actions
inputs: inputs:
wrapper-directory:
description: Path to the Gradle Wrapper directory
required: false
gradle-executable: gradle-executable:
description: Path to the Gradle executable description: Path to the Gradle executable
required: false required: false

2
dist/main/index.js vendored

File diff suppressed because one or more lines are too long

View file

@ -41,11 +41,13 @@ async function resolveGradleExecutable(
workspaceDirectory: string, workspaceDirectory: string,
buildRootDirectory: string buildRootDirectory: string
): Promise<string> { ): Promise<string> {
// Download and use a specified Gradle version
const gradleVersion = github.inputOrNull('gradle-version') const gradleVersion = github.inputOrNull('gradle-version')
if (gradleVersion !== null && gradleVersion !== 'wrapper') { if (gradleVersion !== null && gradleVersion !== 'wrapper') {
return path.resolve(await provision.gradleVersion(gradleVersion)) return path.resolve(await provision.gradleVersion(gradleVersion))
} }
// Use a Gradle executable if defined
const gradleExecutable = github.inputOrNull('gradle-executable') const gradleExecutable = github.inputOrNull('gradle-executable')
if (gradleExecutable !== null) { if (gradleExecutable !== null) {
if (gradleExecutable.endsWith(gradlew.wrapperFilename())) { if (gradleExecutable.endsWith(gradlew.wrapperFilename())) {
@ -56,16 +58,10 @@ async function resolveGradleExecutable(
return path.resolve(workspaceDirectory, gradleExecutable) return path.resolve(workspaceDirectory, gradleExecutable)
} }
const wrapperDirectory = github.inputOrNull('wrapper-directory') // By default, use the Gradle wrapper declared for the build
const gradlewDirectory = gradlew.validateGradleWrapper(buildRootDirectory)
wrapperDirectory !== null await cacheWrapper.restoreCachedWrapperDist(buildRootDirectory)
? path.resolve(workspaceDirectory, wrapperDirectory) return path.resolve(buildRootDirectory, gradlew.wrapperFilename())
: buildRootDirectory
gradlew.validateGradleWrapper(gradlewDirectory)
await cacheWrapper.restoreCachedWrapperDist(gradlewDirectory)
return path.resolve(gradlewDirectory, gradlew.wrapperFilename())
} }
function resolveBuildRootDirectory(baseDirectory: string): string { function resolveBuildRootDirectory(baseDirectory: string): string {