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-build
# - prep-docs # - prep-docs
- all-tests-pass - all-tests-pass
- job-publish-storybook: # - job-publish-storybook:
filters: # filters:
branches: # branches:
only: develop # only: develop
requires: # requires:
- prep-deps # - prep-deps
- coveralls-upload: - coveralls-upload:
requires: requires:
- test-unit - test-unit
@ -355,16 +355,16 @@ jobs:
# git config --global user.name "metamaskbot" && # git config --global user.name "metamaskbot" &&
# git config --global user.email "admin@metamask.io" && # git config --global user.email "admin@metamask.io" &&
# yarn publish-docs # yarn publish-docs
job-publish-storybook: # job-publish-storybook:
docker: # docker:
- image: circleci/node:10.17-browsers # - image: circleci/node:10.17-browsers
steps: # steps:
- checkout # - checkout
- attach_workspace: # - attach_workspace:
at: . # at: .
- run: # - run:
name: storybook:deploy # name: storybook:deploy
command: yarn storybook:deploy # command: yarn storybook:deploy
test-unit: test-unit:
docker: docker:

Loading…
Cancel
Save