Home > Software design >  Azure Deploy succeeds but the Web App doesn't get updated
Azure Deploy succeeds but the Web App doesn't get updated

Time:09-05

I have a GitHub repository with the app, and I created a workflow for deploying it via azure/webapps-deploy.

The deployment succeeds, I have logs about the success, I can see that the workflow succeeded, but my web app doesn't get updated.

I heard about file locking so I even stopped the web app slot with Azure/powershell Stop-AzWebAppSlot before the deployment and started it after. Everything works correctly, the web app stops, then the deployment happens, and it "succeeds" but I can't see my changes on the website. The deployment happens for the correct branch.

I'm just building the app in GitHub actions, but not publishing it. Maybe that is the problem?

CodePudding user response:

Turns out I missed the dotnet publish step.

  • Related