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

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'
}