skip to Main Content

Azure DevOps YAML Split & Each – Ubuntu

We have variable group in Pipeline and it has below input Input: Instance1,Instance2,Inastance3 Expected Output: Instance1 Instance2 Inastance3 We tried below YAML Code trigger: - main pool: vmImage: ubuntu-latest variables: - group: "DevInstanceList" - name: InstancesList value: $[variables.Instances] steps: -…

VIEW QUESTION
Back To Top
Search