JleruOHeP
JleruOHeP

Reputation: 10386

How to edit yaml path for azure devops build pipeline?

I had a project in VSTS with a build defined by a yaml file and it was working great.

Then I moved the yaml file in my repo to a different folder. (Initially the folder was \build, but after the refactoring I called it \templates)

Now build pipeline is not working because it cannot find the yaml file. And if I click "Edit" button it gets me to the yaml editing, not the pipeline settings.

How to update the yaml path without deleting the pipeline and creating a new one?

Upvotes: 1

Views: 1974

Answers (1)

JleruOHeP
JleruOHeP

Reputation: 10386

And found it.

Updated answer

Go to your build pipeline -> Edit (it will take you to yaml editing screen) -> "..." button -> Settings:

enter image description here

Which will open "Pipeline Settings": enter image description here

Old answer

(Just for historical reasons I will keep the old answer - maybe it will be reverted back again?)

For someone who is looking for the same thing - when you go to edit mode there is a small hyperlink under "Docs" and "Run" buttons - "Edit in the visual designer"

enter image description here

Upvotes: 2

Related Questions