desc('Initialization'); /** * Run migrations */ task('deploy:run_migrations', function () { run('{{bin/php}} {{release_path}}/yii migrate up --interactive=0'); })->desc('Run migrations'); /** * Main task */ task('deploy', [ 'deploy:prepare', 'deploy:vendors', 'deploy:init', 'deploy:run_migrations', 'deploy:publish', ])->desc('Deploy your project'); after('deploy', 'success');