mirror of
https://github.com/gradle/actions
synced 2024-11-23 18:02:13 +00:00
Add initial top-level action
This commit is contained in:
parent
e8961de5e4
commit
eba89ca5bb
2 changed files with 17 additions and 1 deletions
|
@ -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
14
action.yml
Normal 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'
|
Loading…
Reference in a new issue