Your Pipeline has three stages: build, test, and deploy. You want the build and test stages to run automatically (without requiring human interaction), but you want the deploy stage to require approval by a human being. How do you achieve that goal?
- Use an input step just before the deploy stage.
- This is not possible using Pipeline, because a Pipeline must run from start to finish without human interaction.
- Create a separate Pipeline to run the deploy stage.
- Use a stage step just before the deploy stage.
Reveal Solution Next Question