Hi,
I’m trying to skip the deploy step for a specific build job (along with other steps), but instead of skipping, the config is expanded to try and deploy using a provider called ‘skip’.
build with the issue here:
https://travis-ci.org/github/theia-ide/theia-apps/builds/699401823/config
config:
      install: skip
      script: <the script to run>
      before_deploy: skip
      deploy: skip
expanded config:
        "install": [
          "skip"
        ],
        "script": [
          <script to be run>
        ],
        "before_deploy": [
          "skip"
        ],
        "deploy": [
          {
            "provider": "skip"
          }
        ]