withFailedDeployment method

DeployAttemptBuilder withFailedDeployment()

Implementation

DeployAttemptBuilder withFailedDeployment() {
  _stages = [
    DeployAttemptStageBuilder()
        .withUploadStageSuccess()
        .withAttemptId(_attemptId)
        .build(),
    DeployAttemptStageBuilder()
        .withBuildStageSuccess()
        .withAttemptId(_attemptId)
        .build(),
    DeployAttemptStageBuilder()
        .withDeployStageFailure()
        .withAttemptId(_attemptId)
        .build(),
  ];
  return this;
}