Add deploy stage

This commit is contained in:
Stepan Strelets 2017-03-16 15:50:34 +03:00 committed by Dmitry Khomutov
commit 788aeb161a
2 changed files with 4 additions and 1 deletions

View file

@ -190,7 +190,7 @@ class Builder implements LoggerAwareInterface
$this->setupBuild();
// Run the core plugin stages:
foreach (['setup', 'test'] as $stage) {
foreach (['setup', 'test', 'deploy'] as $stage) {
$success &= $this->pluginExecutor->executePlugins($this->config, $stage);
}