diff --git a/.circleci/config.yml b/.circleci/config.yml index a4dd92db7ef..4004146b54e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -141,7 +141,7 @@ jobs: command: | pushd ~/Viewers/platform/viewer/dist/ > /dev/null which gsutil - gsutil config + gsutil version -l gsutil web set -m index.html -e index.html gs://${WBUCKET} gsutil -h "Cache-Control:no-cache, max-age=0" rsync -d -r . gs://${WBUCKET} diff --git a/idc-deploy-shell/gcloud_authenticate.sh b/idc-deploy-shell/gcloud_authenticate.sh index b0a92304bd8..e688d9a0eef 100644 --- a/idc-deploy-shell/gcloud_authenticate.sh +++ b/idc-deploy-shell/gcloud_authenticate.sh @@ -3,10 +3,10 @@ if [ ! -f "deployment.key.json" ]; then fi gcloud auth activate-service-account --key-file deployment.key.json -echo "Setting deployment client email to ${DEPLOYMENT_CLIENT_EMAIL}" -gcloud auth list +echo "Setting deployment client email to ${DEPLOYMENT_CLIENT_EMAIL}" | sed -e 's/google//' +gcloud auth list | sed -e 's/google//' echo "Return code for gcloud auth list is $?" gcloud config set account $DEPLOYMENT_CLIENT_EMAIL -echo "Setting deployment project to ${DEPLOYMENT_PROJECT_ID}" +echo "Setting deployment project to ${DEPLOYMENT_PROJECT_ID}" | sed -e 's/idc//' gcloud config set project "$DEPLOYMENT_PROJECT_ID"