1
0
mirror of https://github.com/actions/upload-artifact.git synced 2026-02-26 05:32:32 +00:00

Clarify naming

This commit is contained in:
Daniel Kennedy
2026-02-25 15:34:02 -05:00
parent 518025b753
commit d5c7beebb0

View File

@ -3,7 +3,7 @@ description: 'Upload a build artifact that can be used by subsequent workflow st
author: 'GitHub' author: 'GitHub'
inputs: inputs:
name: name:
description: 'Artifact name. If the "archive" input is `false`, the name of the file uploaded will be the artifact name.' description: 'Artifact name. If the `archive` input is `false`, the name of the file uploaded will be the artifact name.'
default: 'artifact' default: 'artifact'
path: path:
description: 'A file, directory or wildcard pattern that describes what to upload.' description: 'A file, directory or wildcard pattern that describes what to upload.'
@ -49,7 +49,7 @@ inputs:
description: > description: >
If true, the artifact will be archived (zipped) before uploading. If true, the artifact will be archived (zipped) before uploading.
If false, the artifact will be uploaded as-is without archiving. If false, the artifact will be uploaded as-is without archiving.
When archive is false, only a single file can be uploaded. The name of the file will be used as the artifact name. When `archive` is `false`, only a single file can be uploaded. The name of the file will be used as the artifact name (ignoring the `name` parameter).
default: 'true' default: 'true'
outputs: outputs: