Push event #2.1 errored

  • Ran for
AMD64
Shell
Git
---
language: generic
addons:
  snaps:
    - name: helm
      classic: true
script:
  - helm lint chart/pagerduty-oncall
  - bin/docker-build
deploy:
  provider: script
  script: bin/docker-push
  on:
    repo: travis-ci/pagerduty-oncall
    all_branches: true
notifications:
  email: false
Build Config
{
  "os": [
    "linux"
  ],
  "addons": {
    "snaps": [
      {
        "name": "helm",
        "classic": true
      }
    ]
  },
  "deploy": [
    {
      "on": {
        "repo": "travis-ci/pagerduty-oncall",
        "all_branches": true
      },
      "script": "bin/docker-push",
      "provider": "script"
    }
  ],
  "script": [
    "helm lint chart/pagerduty-oncall",
    "bin/docker-build"
  ],
  "language": "shell",
  "notifications": {
    "email": {
      "enabled": false
    }
  }
}