Execute your Gradle build and trigger dependency submission
Go to file
2024-06-17 11:40:33 -07:00
.github Run quick-check on main 2024-04-12 14:15:29 -06:00
.gitignore Commit asdf .tool-versions 2022-12-07 13:57:00 +13:00
action.yml Bump to v3.4.2 2024-06-17 11:40:33 -07:00
CODE_OF_CONDUCT.md add code of conduct 2019-09-21 20:57:04 +02:00
LICENSE Update copyright notice 2023-06-30 08:57:49 -06:00
README.md Cull README content: delegate to setup-gradle instead 2024-02-13 13:42:19 -07:00

Important

As of v3 this action has been superceded by gradle/actions/setup-gradle. Any workflow that uses gradle/gradle-build-action@v3 will transparently delegate to gradle/actions/setup-gradle@v3.

Users are encouraged to update their workflows, replacing:

uses: gradle/gradle-build-action@v3

with

uses: gradle/actions/setup-gradle@v3

See the setup-gradle documentation for up-to-date documentation for gradle/actions/setup-gradle.

Execute Gradle builds in GitHub Actions workflows

This GitHub Action can be used to configure Gradle and optionally execute a Gradle build on any platform supported by GitHub Actions.

Example usage

name: Build

on: [ push ]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - name: Checkout sources
      uses: actions/checkout@v4
    - name: Setup Gradle
      uses: gradle/gradle-build-action@v3
    - name: Build with Gradle
      run: ./gradlew build

As of v3, the gradle/gradle-build-action action delegates to gradle/actions/setup-gradle with the same version. Configuration and usage of these actions is identical for releases with the same version number.

See the full setup-gradle documentation for more advanced usage scenarios.