Deployment phase not running, skipping deployment

Here is my circle.yml

machine:
  pre:
    - sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.metadata.mds.plist
  xcode:
    version: 8.3.2

dependencies:
  pre:
    - brew install imagemagick
    - brew install librsvg
  override:
    - bundle check --path=vendor/bundle || bundle install --path=vendor/bundle --jobs=4 --retry=3 --without development
  cache_directories:
    - 'vendor/bundle'
    - 'Pods'
    - '~/.cocoapods'

test:
  override:
    - "true"

deployment:
  beta:
    branch: development
    commands:
      - bundle exec fastlane ios qa
#      - bundle exec fastlane ios staging

Everything was working fine before, but now everytime I run the build, It’s skipping deployment phase. After test it directly jump to teardown state.

Can you link a build where this is happening? You can PM me if you need to keep it private.