Tabulify - Pipeline Flow

Undraw My Documents

Pipeline

A pipeline is a yaml file that defines a serie of step where:

Syntax

The syntax of a pipeline script is the following

pipeline:
    - name: supplierStep1 # first operation of a pipeline is a supplier step
      .....
    - name: intermediateStep2 # next operation are called intermediate and works on the resource returned from the supplier
      .....

where each name is the name of a step

Execution

You can execute a pipeline with the flow execute command

Task Runner