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

Suddenly getting ##[error]System.ArgumentNullException: Value cannot be null. (Parameter 'input') – Ubuntu

Problem appeared just today - previously it was working fine. Suddenly getting the error: ##[error]System.ArgumentNullException: Value cannot be null. (Parameter ‘input’) at System.Text.RegularExpressions.Regex.Replace(String input, String replacement) at Microsoft.VisualStudio.Services.Agent.Util.StringUtil.DeactivateVsoCommands(String input) at Microsoft.VisualStudio.Services.Agent.Worker.WorkerUtilities.DeactivateVsoCommandsFromJobMessageVariables(AgentJobRequestMessage message) at Microsoft.VisualStudio.Services.Agent.Worker.Worker.RunAsync(String pipeIn, String pipeOut) at Microsoft.VisualStudio.Services.Agent.Worker.Program.MainAsync(IHostContext context,…

VIEW QUESTION
Back To Top
Search