Push event #2 errored

  • Ran for
  • Total time
travis-ci/opencensus-ruby:.travis.yml@16a787d
sudo: false
language: ruby
rvm:
  - 2.2.9
  - 2.3.6
  - 2.4.3
  - 2.5.0
before_install:
  - gem install bundler -v 1.16.1
  - gem install rubygems-update -v 3.4.22
script:
  - bundle exec rake

deploy:
  provider: pages
  local_dir: docs
  skip_cleanup: true
  email: chingor@google.com # To satisfy the CLA check, replace this with bot email.
  github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard
  on:
    branch: master
Build Config
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "sudo": false,
  "rvm": [
    "2.2.9",
    "2.3.6",
    "2.4.3",
    "2.5.0"
  ],
  "before_install": [
    "gem install bundler -v 1.16.1",
    "gem install rubygems-update -v 3.4.22"
  ],
  "script": [
    "bundle exec rake"
  ],
  "deploy": [
    {
      "provider": "pages",
      "strategy": "git",
      "local_dir": "docs",
      "skip_cleanup": true,
      "email": "chingor@google.com",
      "on": {
        "branch": [
          "master"
        ]
      },
      "token": "$GITHUB_TOKEN"
    }
  ]
}