Day 2 with Workflows — A workflow is made of steps and jumps
Let’s continue our discovery of Goole Cloud Workflows!
Yesterday, we discovered the UI of Workflows. We created our first workflow. We started with a single step, returning a greeting message:
- sayHello: return: Hello from Cloud Workflows! A workflow definition is made of steps. But not just one! You can create several steps. In YAML, the structure of your workflow will be something like:
- stepOne: # do something - stepTwo: # do something else - sayHello: return: Hello from Cloud Workflows!
Read more...