I know I can do this: https://docs.travis-ci.com/user/deployment/cloudfoundry
Now in .travis.yml, it will have
deploy:
edge: true
provider: cloudfoundry
username: [email protected]
password: supersecretpassword
api: https://api.run.pivotal.io
organization: myawesomeorganization
space: staging
Altough password can be encrypted by running
travis encrypt --add deploy.password
I don't want to put username and password(even it's encrypted) in yml file, is there another way for Travis to deploy apps to Cloud Foundry (or IBM Bluemix)?