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