mirror of
https://github.com/actions/download-artifact.git
synced 2024-11-22 13:45:28 +00:00
7e5b6f00de
* Various improvements to download-artifact * Resolve input path * README updates * PR feedback
8 lines
113 B
TypeScript
8 lines
113 B
TypeScript
export enum Inputs {
|
|
Name = 'name',
|
|
Path = 'path'
|
|
}
|
|
export enum Outputs {
|
|
DownloadPath = 'download-path'
|
|
}
|