hello,
during the deployment phase I get the warning:
[Bintray Upload] Warning: Path: build/libs/ does not exist.`
My lib is not deployed and I don’t understand why travis can’t find build/libs
. I checked with simple ls
command in .travis.yml and the path is valid.
I am looking to send .pom
and .jar
files located in build/libs
folder. so its very straight forward…
"files":
[
{
"includePattern": "build/libs/(.*)",
"uploadPattern": "com/baillyj/jikankt/1.0.0/$1"
}
]
is my syntax no good?