I am using TeamCity to build and deploy files onto a IIS website using Web Deploy 3.
I would like to add a step to call a url when done so that the custom cache can be refreshed when the deployment is finished.
Is there a way I can add a build step to call a url?
Thanks
I would solve this using a command line script that hits the url, and one of TeamCity’s command line runners.
The question is tagged asp.net so I assume you’re on Windows. Put this Get-WebFile script in a Powershell Build Runner. Then call
Get-WebFile "http://yourwebapp.net/"at the bottom.