Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ jobs:
- run:
name: install dependencies
command: |
sudo apt-get update
sudo apt-get install --allow-unauthenticated debian-archive-keyring
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 thanks

gem install bundler:2.4.22
bundle install --path vendor/bundle
sudo rm /etc/apt/sources.list
Expand All @@ -51,7 +53,7 @@ jobs:
pip install python-frontmatter==0.5.0
pip install pathlib

- save_cache:
- save_cache:
key: gem-cache-v1-{{ arch }}-{{ .Branch }}-{{ checksum "Gemfile.lock" }}
paths:
- vendor/bundle
Expand Down