mirror of
https://gitea.com/actions/download-artifact.git
synced 2025-07-04 17:58:45 +07:00
* 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'
|
|
}
|