1
0
mirror of https://github.com/actions/download-artifact.git synced 2026-02-25 21:32:28 +00:00
Files
download-artifact/src/constants.ts

24 lines
475 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',
SkipDecompress = 'skip-decompress',
DigestMismatch = 'digest-mismatch'
}
export enum DigestMismatchBehavior {
Ignore = 'ignore',
Info = 'info',
Warn = 'warn',
Error = 'error'
}
export enum Outputs {
DownloadPath = 'download-path'
}