Skip to content

Commit

Permalink
Add missing deploy:writable entries (#1662)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamieburchell authored and antonmedv committed Aug 27, 2018
1 parent 68d2cf3 commit 3a6d487
Show file tree
Hide file tree
Showing 15 changed files with 17 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
- Fixed once() tasks that where being run multiple times with ParallelExecutor
- Fixed high CPU usage when running in parallel
- Fixed `deploy:writable` no need to specify http_user when using chgrp writable_mode
- Fixed missing `deploy:writable` entries in recipes [#1661]


## v6.2.0
Expand Down Expand Up @@ -387,6 +388,7 @@
- Fixed typo3 recipe
- Fixed remove of shared dir on first deploy

[#1661]: https://github.com/deployphp/deployer/pull/1661
[#1634]: https://github.com/deployphp/deployer/pull/1634
[#1603]: https://github.com/deployphp/deployer/issues/1603
[#1583]: https://github.com/deployphp/deployer/issues/1583
Expand Down Expand Up @@ -478,4 +480,4 @@
[#914]: https://github.com/deployphp/deployer/pull/914
[#911]: https://github.com/deployphp/deployer/pull/911
[#381]: https://github.com/deployphp/deployer/pull/381
[#330]: https://github.com/deployphp/deployer/pull/330
[#330]: https://github.com/deployphp/deployer/pull/330
1 change: 1 addition & 0 deletions recipe/cakephp.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
'deploy:update_code',
'deploy:shared',
'deploy:vendors',
'deploy:writable',
'deploy:init',
'deploy:run_migrations',
'deploy:symlink',
Expand Down
1 change: 1 addition & 0 deletions recipe/codeigniter.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
'deploy:update_code',
'deploy:vendors',
'deploy:shared',
'deploy:writable',
'deploy:symlink',
'deploy:unlock',
'cleanup',
Expand Down
1 change: 1 addition & 0 deletions recipe/composer.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
'deploy:update_code',
'deploy:shared',
'deploy:vendors',
'deploy:writable',
'deploy:symlink',
'deploy:unlock',
'cleanup',
Expand Down
1 change: 1 addition & 0 deletions recipe/drupal7.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
'deploy:release',
'deploy:update_code',
'deploy:shared',
'deploy:writable',
'deploy:symlink',
'deploy:unlock',
'cleanup'
Expand Down
1 change: 1 addition & 0 deletions recipe/drupal8.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
'deploy:release',
'deploy:update_code',
'deploy:shared',
'deploy:writable',
'deploy:symlink',
'deploy:unlock',
'cleanup'
Expand Down
1 change: 1 addition & 0 deletions recipe/flow_framework.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
'deploy:update_code',
'deploy:vendors',
'deploy:shared',
'deploy:writable',
'deploy:run_migrations',
'deploy:publish_resources',
'deploy:symlink',
Expand Down
1 change: 1 addition & 0 deletions recipe/fuelphp.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
'deploy:update_code',
'deploy:vendors',
'deploy:shared',
'deploy:writable',
'deploy:symlink',
'deploy:unlock',
'cleanup',
Expand Down
2 changes: 1 addition & 1 deletion recipe/magento2.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@
'deploy:release',
'deploy:update_code',
'deploy:shared',
'deploy:writable',
'deploy:vendors',
'deploy:writable',
'deploy:clear_paths',
'deploy:magento',
'deploy:symlink',
Expand Down
2 changes: 1 addition & 1 deletion recipe/symfony4.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
'deploy:release',
'deploy:update_code',
'deploy:shared',
'deploy:writable',
'deploy:vendors',
'deploy:writable',
'deploy:cache:clear',
'deploy:cache:warmup',
'deploy:symlink',
Expand Down
1 change: 1 addition & 0 deletions recipe/typo3.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
'deploy:update_code',
'deploy:shared',
'deploy:vendors',
'deploy:writable',
'deploy:symlink',
'deploy:unlock',
'cleanup',
Expand Down
1 change: 1 addition & 0 deletions recipe/yii.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
'deploy:release',
'deploy:update_code',
'deploy:vendors',
'deploy:writable',
'deploy:symlink',
'deploy:unlock',
'cleanup',
Expand Down
1 change: 1 addition & 0 deletions recipe/yii2-app-advanced.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
'deploy:vendors',
'deploy:init',
'deploy:shared',
'deploy:writable',
'deploy:run_migrations',
'deploy:symlink',
'deploy:unlock',
Expand Down
1 change: 1 addition & 0 deletions recipe/yii2-app-basic.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
'deploy:update_code',
'deploy:shared',
'deploy:vendors',
'deploy:writable',
'deploy:run_migrations',
'deploy:symlink',
'deploy:unlock',
Expand Down
1 change: 1 addition & 0 deletions recipe/zend_framework.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
'deploy:release',
'deploy:update_code',
'deploy:vendors',
'deploy:writable',
'deploy:symlink',
'deploy:unlock',
'cleanup',
Expand Down

0 comments on commit 3a6d487

Please sign in to comment.