YAML looks like the following:
sudo: required
dist: trusty
group: deprecated-2017Q4
language: java
sudo: required
services:
- docker
Any reason for this?
YAML looks like the following:
sudo: required
dist: trusty
group: deprecated-2017Q4
language: java
sudo: required
services:
- docker
Any reason for this?
This is being caused by the env
configuration. Travis sees this as a build matrix. The correct way is to use the global key:
env:
global:
- GH_USER_EMAIL=
- GH_USER_NAME=
ah thanks @montana worked!