mirror of
https://github.com/gradle/gradle-build-action.git
synced 2025-04-04 20:34:16 +02:00
Map outputs from setup-gradle
This commit is contained in:
parent
45f7d53cce
commit
b5a97c14e4
1 changed files with 4 additions and 1 deletions
|
@ -136,16 +136,19 @@ inputs:
|
||||||
outputs:
|
outputs:
|
||||||
build-scan-url:
|
build-scan-url:
|
||||||
description: Link to the Build Scan® generated by a Gradle build. Note that this output applies to a Step executing Gradle, not to the `gradle-build-action` Step itself.
|
description: Link to the Build Scan® generated by a Gradle build. Note that this output applies to a Step executing Gradle, not to the `gradle-build-action` Step itself.
|
||||||
|
value: ${{ steps.setup-gradle.outputs.build-scan-url }}
|
||||||
dependency-graph-file:
|
dependency-graph-file:
|
||||||
description: Path to the GitHub Dependency Graph snapshot file generated by a Gradle build. Note that this output applies to a Step executing Gradle, not to the `gradle-build-action` Step itself.
|
description: Path to the GitHub Dependency Graph snapshot file generated by a Gradle build. Note that this output applies to a Step executing Gradle, not to the `gradle-build-action` Step itself.
|
||||||
|
value: ${{ steps.setup-gradle.outputs.dependency-graph-file }}
|
||||||
gradle-version:
|
gradle-version:
|
||||||
description: Version of Gradle that was setup by the action
|
description: Version of Gradle that was setup by the action
|
||||||
|
value: ${{ steps.setup-gradle.outputs.gradle-version }}
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Gradle
|
- name: Setup Gradle
|
||||||
|
id: setup-gradle
|
||||||
uses: gradle/actions/setup-gradle@v3-beta
|
uses: gradle/actions/setup-gradle@v3-beta
|
||||||
with:
|
with:
|
||||||
gradle-version: ${{ inputs.gradle-version }}
|
gradle-version: ${{ inputs.gradle-version }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue