mirror of
https://github.com/actions/download-artifact.git
synced 2024-11-22 13:45:28 +00:00
12 lines
195 B
TypeScript
12 lines
195 B
TypeScript
export enum Inputs {
|
|
Name = 'name',
|
|
Path = 'path',
|
|
GitHubToken = 'github-token',
|
|
Repository = 'repository',
|
|
RunID = 'run-id'
|
|
}
|
|
|
|
export enum Outputs {
|
|
DownloadPath = 'download-path'
|
|
}
|