skip to Main Content

zero new lines while I do sonarscan on pull request using azure pipeline for my dot net code

- script: | git config --global http.https://dev.azure.com/<company>/.extraheader "AUTHORIZATION: bearer $(System.AccessToken)" # Now fetch the PR source branch using the token git fetch origin $(System.PullRequest.SourceBranch):$(System.PullRequest.SourceBranch) git checkout $(System.PullRequest.SourceBranch) displayName: 'Fetch and Checkout PR Source Branch' env: # This exposes the system…

VIEW QUESTION

Azure Container Apps: Azure Container Registry Authentication Issue

I've been trying to deploy a docker image that's already pushed in our azure container registry. I'm receiving the following error: /usr/bin/az containerapp update -n <appName> -g <resourceGroupName> -i <containerRegistry>.azurecr.io/<repository>:20240430.13 --replace-env-vars ASPNETCORE_ENVIRONMENT=Acceptance ERROR: (InvalidParameterValueInContainerTemplate) The following field(s) are either invalid…

VIEW QUESTION
Back To Top
Search