Push event #8 errored

  • Ran for
  • Total time
The .travis.yml file used for this job is not available
Build Config
{
  "os": [
    "linux"
  ],
  "rvm": [
    "2.3.6",
    "2.4.4",
    "2.5.1"
  ],
  "dist": "trusty",
  "sudo": false,
  "deploy": [
    {
      "on": {
        "branch": [
          "master"
        ]
      },
      "script": "bash deploy.sh",
      "provider": "script"
    }
  ],
  "matrix": {
    "include": [
      {
        "stage": "redeploy-app",
        "deploy": [
          {
            "app": "gem-rails-ohmy",
            "api_key": "$HEROKU_AUTH_TOKEN",
            "provider": "heroku",
            "strategy": "api"
          }
        ],
        "script": [
          "skip"
        ]
      }
    ]
  },
  "install": [
    "bundle install --retry=3"
  ],
  "language": "ruby",
  "before_deploy": [
    "mkdir build",
    "cd build",
    "git clone https://github.com/travis-ci/rails-demo",
    "cd ./rails-demo"
  ],
  "before_install": [
    "gem update --system",
    "gem install bundler"
  ]
}