mirror of
https://github.com/actions/upload-artifact
synced 2024-11-10 03:12:40 +00:00
9 lines
130 B
TypeScript
9 lines
130 B
TypeScript
|
export enum Inputs {
|
||
|
Name = 'name',
|
||
|
Path = 'path'
|
||
|
}
|
||
|
|
||
|
export function getDefaultArtifactName(): string {
|
||
|
return 'artifact'
|
||
|
}
|