Comment out `storybook-deploy` step (#7913)

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.
feature/default_network_editable
Mark Stacey 5 years ago committed by ricky
parent 1d73d90a1a
commit 6ae93b1ec0
  1. 32
      .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:

Loading…
Cancel
Save