5
It is possible to-or if there is a tool that enables me to send certain purchases of a project to an FTP after it passes a continuous integration test (Travis-ci for example)?
The idea is that after I make one commit and the test is completed and pass all tests, the changes which have consequently been successfully made are published automatically.
There are other ways to have a result close to that or maybe some better solution?
If it’s any help, I currently use Git as a versioning tool, use Github as a repository manager, and continue using Travis-ci for integration.
Have you tried using the
notifications
do Travis? can run a URL for example: http://docs.travis-ci.com/user/notifications/#Webhook-notification– Sergio
Cool, I don’t know if it’s the best solution but it might help solve if I create a script to publish the changes myself.
– Diego Lopes Lima