Skip to content

Commit

Permalink
add artifact storage
Browse files Browse the repository at this point in the history
  • Loading branch information
Galimede committed Nov 3, 2020
1 parent 3e76c84 commit 8482600
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,18 @@ jobs:
docker tag $IMAGE_NAME:app $IMAGE_NAME:latest
docker push $IMAGE_NAME:latest
docker push $IMAGE_NAME:$CIRCLE_BUILD_NUM
doc-server:
docker:
- image: cimg/node:12.18
steps:
- checkout
- restore_cache:
key: yarn-packages-v2{{ checksum "yarn.lock" }}
- run: yarn doc:build
- run: cp -r /doc-server /tmp/doc-server
- store_artifacts:
path: /tmp/doc-server

workflows:
build_and_test:
jobs:
Expand Down

0 comments on commit 8482600

Please sign in to comment.