user3415653
user3415653

Reputation: 335

bamboo create release only if manual stage is done

I have a build with several stages. The last stage of my build is an manual stage. Is it possible to configure the build so that it only can create a release when the last stage has passed?

I have bamboo in version 5.8.1.

Upvotes: 3

Views: 1828

Answers (1)

benka
benka

Reputation: 4742

If you mean to set up another build plan that is dependent on this one (with the manual stage) then all you have to do is:

  • create the second plan that will build (let's call it "builder")
  • go to plan configuration (first build plan with manual stage)
  • select Dependencies tab
  • select the plan builder
  • on the same page in the Advanced Options be sure that:
    Trigger dependencies only when all stages have been run successfully
    is ticked
  • click save

The Builder plan will be triggered when the first plan finishes the manual stage.

Upvotes: 1

Related Questions