laravel-deploy-operations icon indicating copy to clipboard operation
laravel-deploy-operations copied to clipboard

Execution of actions during deployment in two stages

Open andrey-helldar opened this issue 2 years ago • 1 comments

Feature description

Now the call of actions is carried out in one stage and you have to choose when to do it - before updating the symlink during zero-downtime deploy or after.

It is planned to add the possibility of a two-stage deployment.

For example with deployer:

task('deploy', [
    // ...
    'artisan:migrate',
    'artisan:migrate:actions --before', // here
    'deploy:publish',
    'php-fpm:reload',
    'artisan:queue:restart',
    'artisan:migrate:actions', // here
]);

Environment

No response

andrey-helldar avatar Mar 15 '22 08:03 andrey-helldar

Coming soon :)

andrey-helldar avatar Apr 19 '22 09:04 andrey-helldar