stage('production') ->set('deploy_path', '~/www/{{application}}') ; localhost() ->roles('test', 'build') ->set('deploy_path', '/tmp/build/{{application}}') ->set('keep_releases', 1); // Tasks task('assets:build', function () { run('yarn install'); run('yarn build'); })->onRoles('build'); task('assets:upload', function () { upload('public/build/', '{{release_path}}/public'); upload('public/img/', '{{release_path}}/public'); }); task('assets', ['assets:build', 'assets:upload']); task('restart:consumer', 'systemctl --user restart keylighter-updater'); // [Optional] if deploy fails automatically unlock. after('deploy:failed', 'deploy:unlock'); after('deploy:symlink', 'cachetool:clear:opcache'); after('deploy:symlink', 'restart:consumer'); // Migrate database before symlink new release. //before('deploy:symlink', 'database:migrate'); before('deploy:symlink', 'assets');