mirror of
https://github.com/actions/upload-artifact.git
synced 2025-07-10 09:10:50 +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'
|
|
}
|