1
0
Files
download-artifact/src/constants.ts
T

15 lines
286 B
TypeScript
Raw Normal View History

2020-04-28 15:45:21 +02:00
export enum Inputs {
Name = 'name',
Path = 'path',
GitHubToken = 'github-token',
Repository = 'repository',
RunID = 'run-id',
Pattern = 'pattern',
2025-04-17 04:47:03 +00:00
MergeMultiple = 'merge-multiple',
ArtifactIds = 'artifact-ids'
2020-04-28 15:45:21 +02:00
}
2020-07-15 12:09:31 +02:00
export enum Outputs {
DownloadPath = 'download-path'
}