desc('Initialization'); /** * Run migrations */ task('deploy:run_migrations', function () { run('{{bin/php}} {{release_or_current_path}}/bin/cake.php migrations migrate --no-lock'); run('{{bin/php}} {{release_or_current_path}}/bin/cake.php schema_cache build'); })->desc('Run migrations'); /** * Main task */ task('deploy', [ 'deploy:prepare', 'deploy:vendors', 'deploy:init', 'deploy:run_migrations', 'deploy:publish', ])->desc('Deploy your project');