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