skip to Main Content

Ubuntu – Azure DevOps error Repository with name or identifier does not exist or you do not have permissions

I am converting a Classic Azure build pipeline into a YAML pipeline and I have this step defined: parameters: RestoreBuildProjects: '**/*.csproj' buildConfiguration: 'Any CPU' TestProjects: '**/*Tests/*.csproj' stages: - stage: Build condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest')) jobs: - job: Build_Application continueOnError: false…

VIEW QUESTION
Back To Top
Search