skip to Main Content

Azure – wrong Az.Acoounts version being used

I have these tasks in a pipeline I'm using that is failing because it is using Az.Accounts version earlier than 2.19.0 (2.17.0) - task: PowerShell@2 displayName: 'Install Az.Accounts' inputs: pwsh: true targetType: 'inline' script: 'Install-Module -Name Az.Accounts -RequiredVersion 2.19.0 -Repository…

VIEW QUESTION

Create pipleine in Azure devops by rest API failed – Value cannot be null. Parameter name: repositoryName

I am tring to create Azure devops (tfs) Pipeline by rets API as described here: https://learn.microsoft.com/en-us/rest/api/azure/devops/pipelines/pipelines/create?view=azure-devops-rest-6.0 Request url: https://tfs.xxx/tfs/Projects/xxx/_apis/pipelines?api-version=6.0-preview Request body: { "folder": null, "name": "pipeline-made-by-api", "configuration": { "type": "yaml", "path": "build.yaml", "repository": { "id": "xxx", "name": "xxx-repo", "type": "azureReposGit"…

VIEW QUESTION
Back To Top
Search