我正在尝试将应用程序从Travis部署到Cloud Foundry。
我的.travis.yml看起来像这样:
deploy:
provider: cloudfoundry
api: https://api.run.pivotal.io
username:
secure: "... secure username, generated with travis cli"
password:
secure: "... secure password, generated with travis cli"
organization: my-org
space: development
on:
repo: username/repository
branch: master
组织,空间,存储库,加密的用户名和密码经过双重检查并且是正确的。
然而,travis日志告诉我:
Installing deploy dependencies
Preparing deploy
cf
Setting api endpoint to https://api.run.pivotal.io...
OK
API endpoint: https://api.run.pivotal.io (API version: 2.37.0)
Not logged in. Use 'cf login' to log in.
API endpoint: https://api.run.pivotal.io
Authenticating...
Credentials were rejected, please try again.
手动登录就像魅力一样。 任何人都知道问题可能是什么?
我不确定是不是我,travis或云代工厂(PWS)翘起来。
答案 0 :(得分:3)
我遇到了同样的问题,发现我的密码中有特殊字符。
如果您的密码包含特殊字符,那么在命令行中调用 travis encrypt 时,您需要将密码括在引号中并转义特殊字符。
详情可见:http://docs.travis-ci.com/user/encryption-keys/#Note-on-escaping-certain-symbols