Hi Marjan, Greetings!
Welcome to the Microsoft Q&A Platform. Thank you for reaching out & I hope you are doing well.
Default Domain Showing Azure Welcome Page: This usually happens if the deployment didn't succeed, the app is not running correctly, or the published files are not in the right location. Try restarting the Web App and checking deployment logs in GitHub Actions.
Entire Project in /wwwroot/
: dotnet publish
command is placing the full project instead of just the compiled output. check the workflow publishes to a separate directory (e.g., ${{ runner.temp }}/publish
) and deploys only that folder.
Different Web App Name vs. Project Name: The names don’t need to match. Just check the GitHub Actions workflow correctly references the Azure Web App name (AZURE_WEBAPP_NAME
) as listed in the Azure portal.
Pipeline status:
Deployment status:
Hope this helps.
If the answer is helpful, please click Accept Answer and kindly upvote it. If you have any further questions about this answer, please click Comment.