mirror of
https://github.com/actions/download-artifact.git
synced 2024-11-09 15:12:44 +00:00
Add download-path output to action.yml (#194)
Reference: https://github.com/actions/download-artifact/issues/153 Reference: https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#outputs-for-docker-container-and-javascript-actions Prevents false positives from tooling, such as `actionlint`, that depends on the metadata for static analysis. Co-authored-by: Konrad Pabjan <konradpabjan@github.com>
This commit is contained in:
parent
adf9559c4f
commit
e9ef242655
1 changed files with 3 additions and 0 deletions
|
@ -8,6 +8,9 @@ inputs:
|
|||
path:
|
||||
description: 'Destination path'
|
||||
required: false
|
||||
outputs:
|
||||
download-path:
|
||||
description: 'Path of artifact download'
|
||||
runs:
|
||||
using: 'node16'
|
||||
main: 'dist/index.js'
|
||||
|
|
Loading…
Reference in a new issue