Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

A workflow is an orchestration of steps which define a build or deployment process. These steps can be a combination of plugin operations or basic workflow operations such as variable assignment, conditionals, or looping constructs.

...

Tip
titlePre-deploy

Pre-deploy workflow will execute when a deploy request it submitted. The project should have the prePre-deploy workflow selected in the configuration screen. The workflow inputs for Pre-deploy should be setup to have the same or less number of inputs related to the corresponding Deploy workflow of the project.

The Pre-deploy allows the output from the Pre-deploy workflows to flow into the Deploy workflow inputs. For this to work, workflow developers must use the same name and data type for the Pre-deploy output(with "Return As Output" selected) and Deploy input variables in the respective workflows.

Workflows are configured on each project which allows project to perform Build and Deploy operations and in case of Utility projects allows for execution of desired commands. The Pre-deploy workflow can be used to perform any review for certain deployments like Terraform, Database etc prior to running actual Deploy operations to elimate eliminate any unwanted changes in an environment.

...