Browse Source

update config.yml

main
khelia 5 years ago
parent
commit
9ac5076ee9
  1. 11
      .circleci/config.yml

11
.circleci/config.yml

@ -27,13 +27,20 @@ workflows:
branches: branches:
only: only:
- main - main
- deploy:
- server-doc-build:
requires: requires:
- test - test
filters: filters:
branches: branches:
only: only:
- main - main
- server-doc-deploy:
requires:
- server-doc-build
filters:
branches:
only:
- main
jobs: jobs:
build: build:
docker: docker:
@ -94,7 +101,7 @@ jobs:
steps: steps:
- checkout - checkout
- restore_cache: - restore_cache:
key: dependencies-{{ checksum "package.json" }}-{{ .Environment.CACHE_VERSION }}
key: yarn-packages-v2{{ checksum "yarn.lock" }}
- run: yarn doc:build - run: yarn doc:build
- run: - run:
name: Copy deployment artifacts to workspace name: Copy deployment artifacts to workspace

Loading…
Cancel
Save