From eba89ca5bb14d3a46b4b8a6ac0724c13e1e34a28 Mon Sep 17 00:00:00 2001 From: daz Date: Mon, 15 Jan 2024 18:05:42 -0700 Subject: [PATCH] Add initial top-level action --- README.md | 4 +++- action.yml | 14 ++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 action.yml diff --git a/README.md b/README.md index 5fbea38..65ebd05 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 0000000..5483cdb --- /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'