2
0
mirror of https://github.com/actions/download-artifact.git synced 2026-07-21 01:14:55 +00:00
Files
download-artifact/src/constants.ts
T

24 lines
475 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',
SkipDecompress = 'skip-decompress',
DigestMismatch = 'digest-mismatch'
}
export enum DigestMismatchBehavior {
Ignore = 'ignore',
Info = 'info',
Warn = 'warn',
Error = 'error'
2020-04-28 15:45:21 +02:00
}
2020-07-15 12:09:31 +02:00
export enum Outputs {
DownloadPath = 'download-path'
}