mirror of
https://gitea.com/actions/download-artifact.git
synced 2025-05-17 16:19:30 +07:00
15 lines
286 B
TypeScript
15 lines
286 B
TypeScript
export enum Inputs {
|
|
Name = 'name',
|
|
Path = 'path',
|
|
GitHubToken = 'github-token',
|
|
Repository = 'repository',
|
|
RunID = 'run-id',
|
|
Pattern = 'pattern',
|
|
MergeMultiple = 'merge-multiple',
|
|
ArtifactIds = 'artifact-ids'
|
|
}
|
|
|
|
export enum Outputs {
|
|
DownloadPath = 'download-path'
|
|
}
|