Skip to content

Commit

Permalink
Install dependencies when deploying
Browse files Browse the repository at this point in the history
Previously, the entire virtualenv was cached. Now we're only caching the pip cache, so we need to re-install the packages before they're available to use
  • Loading branch information
RealOrangeOne authored Jun 2, 2021
1 parent 81f5402 commit fb9b57d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
- checkout
- restore_cache:
key: cache-{{ .Branch }}-{{ checksum "requirements.txt" }}
- run: pip install -r requirements.txt
- deploy:
name: Deploy to Github Pages
command: ./.circleci/deploy.sh
Expand Down

0 comments on commit fb9b57d

Please sign in to comment.