deployer icon indicating copy to clipboard operation
deployer copied to clipboard

Tasks not run on current stage still shown in CI output

Open peterjaap opened this issue 3 years ago • 0 comments

  • Deployer version: 7.0.0-rc2
  • Deployment OS: Alpine

The Deployer in our CI job looks like this;

image

I've expanded the collapsed tasks on line 851-855. As you can see, there is nothing in the output. That is because these tasks are run on specific stages (labels) and the output you see is from a deployment on the master branch.

These tasks are defined as such;

task('magento:create:env', function () {
 /// logic
})->select('stage=review, stage=staging');

In my opinion, these shouldn't be shown in the CI output when the labels do not match.

peterjaap avatar Nov 24 '21 20:11 peterjaap