CircleCI在YAML中失败

时间:2015-11-22 19:10:29

标签: javascript yaml circleci

我直接从他们的示例中复制了部署部分:

machine:
  environment:
    PATH: ${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin
    NODE_ENV: test
    TZ: Europe/Paris
  node:
    version: v0.12.7

dependencies:
  cache_directories:
    - node_modules
    - app/js/lib
  override:
    - npm prune && npm install

deployment:
  production:
    branch: master
    commands:
      - ./deploy_prod.sh
  staging:
    branch: staging
    commands:
      - ./deploy_staging.sh

然而我明白了:

enter image description here

想法?

0 个答案:

没有答案