mirror of
https://github.com/gradle/actions
synced 2024-11-23 09:52:13 +00:00
4b660dc33e
These actions simply delegate to `gradle/gradle-build-action` - `setup-gradle`: As `gradle-build-action` without the execution capability. - `dependency-submission`: Submits a dependency graph for the project.
14 lines
437 B
YAML
14 lines
437 B
YAML
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:
|
|
- run: |
|
|
echo "::error::The path 'gradle/actions' is not a valid action. Please use 'gradle/actions/setup-gradle' or 'gradle/actions/dependency-submission'."
|
|
exit 1
|
|
shell: bash
|
|
|
|
branding:
|
|
icon: 'box'
|
|
color: 'gray-dark'
|