fix: password in quotes
continuous-integration/drone/push Build is passing Details
continuous-integration/drone Build was killed Details

This commit is contained in:
Giles Bradshaw 2020-10-06 19:58:53 +01:00
parent efa15d2194
commit a20c5a2965
4 changed files with 7 additions and 7 deletions

View File

@ -30,7 +30,7 @@ steps:
commands:
- set -e
- export REGISTRY=$${REGISTRY_DOMAIN}:$${REGISTRY_PORT}/
- sh .drone/scripts/initialise-images.sh $${REGISTRY} $${REGISTRY_PASSWORD}
- sh .drone/scripts/initialise-images.sh $${REGISTRY} "$${REGISTRY_PASSWORD}"
environment:
REGISTRY_DOMAIN:
from_secret: registry-domain

View File

@ -4,6 +4,6 @@
"build": "drone jsonnet --source drone-home.jsonnet --target drone-home.yml --stream"
},
"dependencies": {
"@sigyl/jsonnet-drone": "^0.3.1"
"@sigyl/jsonnet-drone": "^0.4.0"
}
}

View File

@ -1,7 +1,7 @@
n=0
while :
do
docker login $1 --username client --password $2 \
docker login $1 --username client --password "$2" \
&& break # substitute your command here
n=$((n+1))

View File

@ -12,10 +12,10 @@
resolved "https://registry.yarnpkg.com/@sigyl/jsonnet-drone-environment/-/jsonnet-drone-environment-0.0.5.tgz#9ea85e08904777bd21a3e4b30b0b91461d0285ff"
integrity sha512-xVGmdMO1pOyozAWUbJm6mzKBgsLPJ+1hWnGCK3AxPkr7kkDh18hu30+TLzlcQtqq76s5jUfvJUztezsGj/mIcw==
"@sigyl/jsonnet-drone@^0.3.0":
version "0.3.0"
resolved "https://registry.yarnpkg.com/@sigyl/jsonnet-drone/-/jsonnet-drone-0.3.0.tgz#19a8ed693a040fee33d25f2ca0eec5d88b741a4a"
integrity sha512-c60nAupJ1eRQABKBwO8L9bHohkw6qlEWhPA9IthhHSCOFOzhkx/0N32aFdlSh6400nrieYZMYtQJ/28R9I3Wgg==
"@sigyl/jsonnet-drone@^0.4.0":
version "0.4.0"
resolved "https://registry.yarnpkg.com/@sigyl/jsonnet-drone/-/jsonnet-drone-0.4.0.tgz#ebf7bc5e076d7252195fee7be2d1eafd24ee0435"
integrity sha512-96Adxqgo4SIU7skhiD0oPRproK4hy+Gvulym0p0bcSod5bv6b94BcYSfMyJye+sy6oRD0gosJY2uet1rgoB8UA==
dependencies:
"@sigyl/jsonnet-compose" "^0.0.2"
"@sigyl/jsonnet-drone-environment" "0.0.5"