I am pushing changes to my .net8 application on Azure using Github Actions. The build and deploy stages are both completed successfully. But there are no changes to the site html of the site. It is as if the server cache needs to be invalidated.
- I cleared my local browser cache, and
- I have restarted the site on Azure.
- I am using a basic tier with no staging environment.
- I am not publishing to a slot. I really don't know why my changes haven't taken. They are committed in my source code.
My repo is here: https://github.com/SteveScott/Exposure-Computer-ASP/tree/master
My website is https://www.camexcalc.com
Edit: I made extensive changes by removing setup.cs and merging it with program.cs to make it the modern .net v8 style. However, even though the site compiles and runs locally, and deploys successfully, the changes are not reflected on the web even after clearing browser cache and restarting the server.
https://camexcalc.scm.azurewebsites.com. If they match up with the build/deploy time then GH is good. You can restart the app in kudu->command prompt:wmic process where "name='w3wp.exe'" deletefor windows,killall -9 dotnetfor Linux app service plans.