- Home /
Question by
AlejandroMJ · Dec 29, 2017 at 01:38 PM ·
unity cloud build
Unity Cloud Build link with Continuous Integration platforms
After a successful build in Unity Cloud Build I would like to send the generated .zip file url to a Continuous Integration system like Travis CI in order to get this to deploy this .zip file into another server. To do this right now I need to call a custom webhook in my own server that checks (via API) the last build link and starts a Travis CI build via HTTP POST method.
What's the best approach to do this without needing my intermediate step? I'have tried to do this HTTP POST request inside the post-script method in Unity Cloud Build but this seems to be a bad workaround.
Comment