From 4cc31b430c289489f5dd650a315945570453e45c Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Mon, 27 Jan 2020 11:31:08 -0400 Subject: [PATCH] Comment out `storybook-deploy` step The Storybook deploy step is currently broken because it's using the wrong source branch (`master` instead of `develop`), and because the key that CircleCI is setup with doesn't have write access to the repo. While I expect we'll get these two problems fixed soon, this ensures that we at least have passing builds on `develop` in the meantime. --- .circleci/config.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8f2aad2e7c27..7eba4e7b8a74 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -83,12 +83,12 @@ workflows: - prep-build # - prep-docs - all-tests-pass - - job-publish-storybook: - filters: - branches: - only: develop - requires: - - prep-deps + # - job-publish-storybook: + # filters: + # branches: + # only: develop + # requires: + # - prep-deps - coveralls-upload: requires: - test-unit @@ -355,16 +355,16 @@ jobs: # git config --global user.name "metamaskbot" && # git config --global user.email "admin@metamask.io" && # yarn publish-docs - job-publish-storybook: - docker: - - image: circleci/node:10.17-browsers - steps: - - checkout - - attach_workspace: - at: . - - run: - name: storybook:deploy - command: yarn storybook:deploy + # job-publish-storybook: + # docker: + # - image: circleci/node:10.17-browsers + # steps: + # - checkout + # - attach_workspace: + # at: . + # - run: + # name: storybook:deploy + # command: yarn storybook:deploy test-unit: docker: