From 5cd2b226849845fdc31e60001b1a89b01d938925 Mon Sep 17 00:00:00 2001 From: Tobias Skarhed <1438972+tskarhed@users.noreply.github.com> Date: Tue, 14 Apr 2020 18:28:41 +0200 Subject: [PATCH] Storybook: Change deploy bucket (#23569) --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4c73b987485..d46d5354089 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -496,12 +496,12 @@ jobs: elif [[ $CIRCLE_BRANCH == "master" ]]; then echo $GCP_GRAFANA_UPLOAD_KEY > /tmp/gcpkey.json gcloud auth activate-service-account --key-file=/tmp/gcpkey.json - gsutil -m rsync -d -r ./packages/grafana-ui/dist/storybook gs://developers.grafana.com/ui/canary + gsutil -m rsync -d -r ./packages/grafana-ui/dist/storybook gs://grafana-storybook/canary elif [[ -n $CIRCLE_TAG ]]; then echo $GCP_GRAFANA_UPLOAD_KEY > /tmp/gcpkey.json gcloud auth activate-service-account --key-file=/tmp/gcpkey.json - gsutil -m rsync -d -r ./packages/grafana-ui/dist/storybook gs://developers.grafana.com/ui/latest - gsutil -m rsync -d -r ./packages/grafana-ui/dist/storybook gs://developers.grafana.com/ui/$CIRCLE_TAG + gsutil -m rsync -d -r ./packages/grafana-ui/dist/storybook gs://grafana-storybook/latest + gsutil -m rsync -d -r ./packages/grafana-ui/dist/storybook gs://grafana-storybook/$CIRCLE_TAG fi - run: name: CI job failed