Added names and dirs outputs.

This commit is contained in:
2025-07-10 14:05:13 -07:00
parent b0980a13ab
commit 5162240176
2 changed files with 16 additions and 5 deletions

View File

@@ -50,9 +50,12 @@ inputs:
required: false
default: "${{ github.token }}"
outputs:
downloadedArtifacts:
description: "The downloaded artifacts."
value: ${{ steps.download.outputs.downloadedArtifacts }}
downloadedArtifactNames:
description: "The downloaded artifacts names"
value: ${{ steps.download.outputs.downloadedArtifactNames }}
downloadedArtifactPaths:
description: "The downloaded artifact paths."
value: ${{ steps.download.outputs.downloadedArtifactPaths }}
downloadedArtifactDirs:
description: "The extracted downloaded artifact directories."
value: ${{ steps.download.outputs.downloadedArtifactDirs }}