TeamCity Call Url Build Step

前端 未结 3 2089
青春惊慌失措
青春惊慌失措 2021-02-14 18:11

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 r

3条回答
  •  既然无缘
    2021-02-14 18:44

    An even simpler method would be the same Powershell buildrunner step, but just use:

    (New-Object System.Net.WebClient).DownloadString("http://yourwebapp.net");.

    No dependencies on other scripts, just native Powershell. Anything wrong with that?

提交回复
热议问题