An Azure service that provides streamlined full-stack web app development.
Hi @Derrick
To host a website you built on GitHub in Azure, the simplest option is to use Azure Static Web Apps if your site is a frontend/static website (HTML, CSS, JavaScript, React, Angular, etc.). In the Azure portal, create a Static Web App resource, select GitHub as the source, sign in to GitHub, choose your repository, branch, and build settings, and Azure will automatically create a GitHub Actions workflow to build and deploy your site whenever you push changes. If your website needs server-side code such as Node.js, .NET, Java, or PHP, then use Azure App Service instead, where you can create a Web App and connect your GitHub repository through Deployment Center for continuous deployment.
https://learn.microsoft.com/en-us/azure/app-service/deploy-github-actions?tabs=openid%2Caspnetcore
https://learn.microsoft.com/en-us/azure/static-web-apps/get-started-portal?tabs=vanilla-javascript&pivots=github
Kindly let us know if the above helps or you need further assistance on this issue.