0

I am using jenkins 2.89.2 version.

For deployment into production system it's often useful to require manual approval; is there a way to insert a manual button to press inside a pipeline?

I tried using Build other Project(manual Step) in post build action but still i don't see any approval button or manual intervention at prod build in build pipeline.. And as i can see that In Build pipeline ---> Manually trigger downstream projects is no more avail in Build pipeline version 1.5.8.

Can anyone help on this how to do? Thanks in advance.

1 Answer 1

0

Yes, there is: use the input step in your Pipeline like so:

input(message: "Proceed with this build?")

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .