CircleCI: Fix insecure password via CLI (#4331)

- docker_tagged job failed for release 0.34.4
This commit is contained in:
Karoly Albert Szabo 2019-05-13 15:14:54 +02:00 committed by Alessio Treglia
parent 77c04202a2
commit 2d3a251157
1 changed files with 1 additions and 1 deletions

View File

@ -393,7 +393,7 @@ jobs:
docker_layer_caching: true
- run: |
docker build -t tendermint/gaia:$CIRCLE_TAG .
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker login --password-stdin -u $DOCKER_USER <<<$DOCKER_PASS
docker push tendermint/gaia:$CIRCLE_TAG
workflows: