How do i debug a deployment?

circle.yml

deployment:
  production:
    branch: master
    commands:
      - node node_modules/gulp/bin/gulp.js

I am trying to get this command to run but have been having no luck. I don’t even see a deployment tab on my circleci dashboard. What am I missing ?
Thanks for your help !

Hi,

When viewing build output, the deployment section, if ran, will be near the bottom of the page after most other sections, including the test section.

If build output alone isn’t giving you enough information, you can always re-run a build with SSH enabled and SSH in to debug. Running node node_modules/gulp/bin/gulp.js manually, checking certain variables, directory structures, and log files can help determine the issue.

Thanks ! After a few hours i realized i named my file circleci.yml NOT circle.yml…D’oh !