diff --git a/README.md b/README.md index 5fbea38e..65ebd05a 100644 --- a/README.md +++ b/README.md @@ -1 +1,3 @@ -# actions \ No newline at end of file +# GitHub Actions for Gradle builds + +This repository contains a set of GitHub Actions that are useful for building Gradle projects on GitHub. diff --git a/action.yml b/action.yml new file mode 100644 index 00000000..5483cdbc --- /dev/null +++ b/action.yml @@ -0,0 +1,14 @@ +name: Build with Gradle +description: A collection of actions for building Gradle projects, as well as generating a dependency graph via Dependency Submission. + +runs: + using: "composite" + steps: + - name: Setup Gradle + uses: gradle/gradle-build-action@main + with: + cache-read-only: true + +branding: + icon: 'box' + color: 'gray-dark'