1
0
Fork 0
mirror of https://gitea.com/actions/upload-artifact.git synced 2024-08-16 09:49:51 +02:00
upload-artifact/action.yml

14 lines
407 B
YAML
Raw Permalink Normal View History

2019-11-08 17:52:16 +01:00
name: 'Upload a Build Artifact'
description: 'Upload a build artifact that can be used by subsequent workflow steps'
2019-06-24 22:38:21 +02:00
author: 'GitHub'
inputs:
name:
description: 'Artifact name'
required: true
path:
2019-06-25 00:02:39 +02:00
description: 'Directory containing files to upload'
2019-07-23 21:35:00 +02:00
required: true
2019-06-24 22:38:21 +02:00
runs:
2019-09-06 19:19:23 +02:00
# Plugins live on the runner and are only available to a certain set of first party actions.
2019-06-24 22:38:21 +02:00
plugin: 'publish'