2024-04-04 16:38:14 -06:00
## The `setup-gradle` action
2019-09-20 23:06:59 +02:00
2024-04-04 16:38:14 -06:00
The `setup-gradle` action can be used to configure Gradle for optimal execution on any platform supported by GitHub Actions.
2019-09-20 23:06:59 +02:00
2024-04-04 16:38:14 -06:00
This replaces the previous `gradle/gradle-build-action` , which now delegates to this implementation.
2023-08-17 15:13:47 -06:00
2024-04-04 16:38:14 -06:00
The recommended way to execute any Gradle build is with the help of the [Gradle Wrapper ](https://docs.gradle.org/current/userguide/gradle_wrapper.html ), and the examples assume that the Gradle Wrapper has been configured for the project. See [this example ](../docs/setup-gradle.md#build-with-a-specific-gradle-version ) if your project doesn't use the Gradle Wrapper.
2023-08-17 15:13:47 -06:00
2024-04-04 16:38:14 -06:00
### Example usage
2023-08-17 15:13:47 -06:00
2020-06-15 16:23:01 +02:00
```yaml
2024-04-04 16:38:14 -06:00
name: Build
2021-08-17 16:15:28 -06:00
2024-04-18 09:39:15 -06:00
on:
push:
2023-07-07 13:42:32 -06:00
jobs:
build:
runs-on: ubuntu-latest
steps:
2024-04-04 16:38:14 -06:00
- name: Checkout sources
uses: actions/checkout@v4
2024-04-05 14:45:05 -06:00
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
2023-08-20 16:27:48 -06:00
- name: Setup Gradle
2024-08-03 16:39:51 -06:00
uses: gradle/actions/setup-gradle@v4
2024-04-04 16:38:14 -06:00
- name: Build with Gradle
2023-08-20 16:27:48 -06:00
run: ./gradlew build
```
2024-04-04 16:38:14 -06:00
See the [full action documentation ](../docs/setup-gradle.md ) for more advanced usage scenarios.