The travis-ci encrypt command requests login -pro

I am trying to encrypt some signature details using travis cli:

travis encrypt SONATYPE_USERNAME=xxxx

I get an error message:

not logged in, please run travis login --pro

Do I need to use a proxy for encryption? Can I not use the org account and use this command?

+8
source share
2 answers

In order for encryptTravis-CLI to be logged in first. The flag --proprovided via the help line is a good standard ( travis.comusers use the CLI more often), but it is not strictly necessary and can be replaced by --orgone that will use it travis.org(for free).

+7
source

for https://travis-ci.org

travis login --org
travis encrypt <string> --org
0

All Articles