PipelineStepModel constructor
PipelineStepModel({})
Implementation
PipelineStepModel({
required this.name,
required this.command,
this.dependsOn = const [],
this.uploadOutput = false, // Default to false if not specified
this.outputPath, // Optional: Path of the artifact to upload
this.notifySlack = false, // Default to false if not specified
this.customExitCondition,
this.stopOnFailure = true,
});