I'm trying to use a regexp for path variable in cloudfoundry manifest however I couldn't find a way around. This is a Spring Boot application with JAR build.
suppose I have the path as below:
name: MyApp
path: build/libs/MyApp*.jar
It doesn't seem to work this way; all I'm trying to achieve is for cf to catch the only JAR file in build directory and push it.
Has anyone know a way around this?
Regards