Add initial top-level action

This commit is contained in:
daz 2024-01-15 18:05:42 -07:00
parent e8961de5e4
commit eba89ca5bb
No known key found for this signature in database
2 changed files with 17 additions and 1 deletions

View file

@ -1 +1,3 @@
# actions
# GitHub Actions for Gradle builds
This repository contains a set of GitHub Actions that are useful for building Gradle projects on GitHub.

14
action.yml Normal file
View file

@ -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'