Unpredictableness of Travis CI

hello! was setting up my last .yml file maybe 10 minutes ago, and it’s not working at all:

I get from /home/travis/.rvm/gems/ruby-2.2.6/bin/dpl:23:in <main> failed to deploy.

a bit frustrating, sorry for all the questions today, below I will attach my yml file

language: java

jdk:
- oraclejdk8

os:
- linux

branches:
  only:
  - master
  - develop
  - test

before_install:
- curl -fsSL https://clis.ng.bluemix.net/install/linux | sh

install: true
script:
- "./gradlew test -s"

deploy:
  provider: script
  skip_cleanup: true
  scirpt: deploy.sh
  on:
    branch: develop

any help would be nicely appreciated

Does the unpredictability become predictable after correcting your typo in the section of the .travis.yml file that reads:

deploy:
  provider: script
  skip_cleanup: true
  scirpt: deploy.sh

To:

deploy:
  provider: script
  skip_cleanup: true
  script: deploy.sh

As scirpt should be script. I’d suggest you lint next time.