I have a laravel 5.7 project in which I would like to deploy to the server with laravel envoy. If I run
envoy run deploy
I get the following error:
[✗] This task did not complete successfully on one of your servers.
I tried running this from cygwin, git bash and cmd and all gave the same result. I can login with ssh to my server so that's setup correctly. Also if I run the following:
envoy ssh
it logs me into the server. We tried it from another Windows 10 machine and it works just nicely. So it probably has to do something with my setup although we can't figure out why?
Additional information:
Windows 10
PHP 7.2.11
Laravel Envoy 1.5.0 (is installed globally)
OpenSSH_7.9p1, OpenSSL 1.0.2r 26 Feb 2019
Envoy.blade.php
@servers(['web' => 'user@xxx.xxx.xxx.xxx'])
@task('deploy', ['on' => 'web'])
cd domains/domain.com/
git pull origin master
@endtask