Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

1 Answer

up vote 5 down vote accepted

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.

share|improve this answer
That's what I ended up doing. It's actually a very good solution and allows me to do more than just call a url now. Just curious, how to I return an unsuccessful step if anything goes wrong? – Base33 Jan 15 at 11:50
1  
Third hit from the top: stackoverflow.com/search?q=how+to+fail+a+build+in+teamcity – Josh Buedel Jan 15 at 23:16
How would I send credentials to a site using Integrated Windows authentication with this script? – Niklas Ringdahl Mar 4 at 12:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.