bbrun icon indicating copy to clipboard operation
bbrun copied to clipboard

bbrun should not start steps wich are used for deployment

Open tzahari opened this issue 6 years ago • 0 comments

I started a bbrun without parameters and the fist default step was successful. But then also another default step wich has deployment: staging & trigger: manual set. This should be prevented!

attached you will find a test bitbucket-pipline.yml:

pipelines:
  default:
    - step:
        name: Build & Test
        script:
          - /bin/echo "Build & Test"
    - step:
        name: Deploy to STAGING
        deployment: staging
        trigger: manual
        script:
          - /bin/echo "Deploy to STAGING - this should not be run!"
    - step:
        name: Deploy to LIVE
        deployment: production
        trigger: manual
        script:
          - /bin/echo "Deploy to LIVE - this should not be run!"

tzahari avatar Jan 30 '19 16:01 tzahari