mirror of
https://github.com/actions/upload-artifact.git
synced 2025-07-12 01:53:48 +00:00
* V2 Upload Artifact * Improve logs * Update release * Update test.yml * Update test.yml * Update test.yml * @actions/artifact v0.2.0 package * Add extra YAML test
9 lines
130 B
TypeScript
9 lines
130 B
TypeScript
export enum Inputs {
|
|
Name = 'name',
|
|
Path = 'path'
|
|
}
|
|
|
|
export function getDefaultArtifactName(): string {
|
|
return 'artifact'
|
|
}
|