1
0
Fork 0
mirror of https://code.forgejo.org/actions/download-artifact synced 2025-07-12 21:25:59 +02:00

Add download-path output to action.yml

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.
This commit is contained in:
Brian Flad 2023-01-04 14:38:38 -05:00
parent 9782bd6a98
commit 961f7434e7
No known key found for this signature in database
GPG key ID: AC40A9A6632E4888

View file

@ -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'