Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 10e136b

Browse files
committed
Fix docker login.
1 parent 79c19f9 commit 10e136b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
command: |
3737
sudo apt-get install -y jq
3838
export VERSION=`jq -r '.version' vars.js`
39-
docker login -u "$DOCKER_USER" -p "$DOCKER_PASS"
39+
echo "$DOCKER_PASS" | docker login -u "$DOCKER_USER" --password-stdin
4040
./release.sh
4141
git tag -a $VERSION -m "Release $VERSION."
4242
git push --tags

0 commit comments

Comments
 (0)