Home > Mobile >  Not able to deploy .Net6 app to new azure app services
Not able to deploy .Net6 app to new azure app services

Time:06-22

I have triggered the pipeline in Azure . It is successfully triggered. No issues found. But when checked the app service application url, It shows "This page can’t be found". But in app service on Azure also , I am able to see that it is deployed successfully.

Can you all please highlight the workaround here.

CodePudding user response:

Could you go diagnostics tool which is an intelligent and interactive experience to help you troubleshoot your app with no configuration required. When you do run into issues with your app, App Service diagnostics points out what’s wrong to guide you to the right information to more easily and quickly troubleshoot and resolve the issue.

Check this official document for steps to be followed: Quickstart: Deploy an ASP.NET web app

You may refer to this document might be helpful: Troubleshoot on Azure App Service

CodePudding user response:

Looks like the AzureRmWebAppDeployment@4 task got a new update (v4.205.13) that doesn't output variables like the AppServiceApplicationUrl. It was working for us with v4.198.0.

See Issue https://github.com/microsoft/azure-pipelines-tasks/issues/16467

  • Related