I´m trying to deploy a web application to google app engine after successful build(I´m using maven on my project) and travis-ci is asking for my password. How can I input my password or specify somewhere else?
相关问题
- java.lang.NullPointerException at java.io.PrintWri
- __call__() missing 1 required positional argument:
- Upload file to Google Cloud Storage using AngularJ
- Where is the best place to put one-time and every-
- facebook “could not retrieve data from URL”
相关文章
- Is there a size limit for HTTP response headers on
- appcfg.py command not found
- Google app engine datastore string encoding proble
- travis-ci setup releases with --github-token
- Angular route not working when used with Google Ap
- Doctrine not finding data on Google App Engine?
- Using OkHttp client via OKClient on Google App Eng
- Quoting YAML (for Travis CI)
Based on the limited information you are giving us, I am guessing this is happening during the
gcloud preview app deploy
call.Typically the docker TLS Verification will need a local public key for a Cert and this requires a passcode response. This situation can be avoided by providing the cert using the
travis encrypt-file
api and callinggcloud auth activate-service-account
during the build. see gloud cli herePlease see the travis yml here for a full example As always, post questions either here or github for additional walk-through questions.