I am building an azure relase pipeline, When i press 'create release', I am brought to the following screen in which i can give input. How can i add in my own custom field, to define a new parameter?
For clarification, I am asking how to do those on a classic release pipeline, NOT a new yaml pipeline.
Here is how i would create parameters on a yaml pipeline:
parameters:
- name: aspName
displayName: 'App service plan name'
type: string
default: mydefaule


