We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 187ce0a commit 486410eCopy full SHA for 486410e
1 file changed
.github/workflows/ci.yml
@@ -6,17 +6,23 @@ on:
6
pull_request:
7
8
jobs:
9
- # Build job
10
build:
11
runs-on: ubuntu-latest
12
steps:
13
- name: Checkout
14
uses: actions/checkout@v4
+
15
- name: Setup Ruby
16
uses: ruby/setup-ruby@v1
17
with:
18
- ruby-version: '3.3' # Not needed with a .ruby-version file
19
- bundler-cache: true # runs 'bundle install' and caches installed gems automatically
20
- cache-version: 0 # Increment this number if you need to re-download cached gems
+ ruby-version: '3.3'
+ bundler-cache: false # Disable bundler cache because we’re bypassing lock consistency
21
+ - name: Unfreeze bundler
22
+ run: bundle config set --local frozen false
23
24
+ - name: Install dependencies
25
+ run: bundle install
26
27
- name: Build with Jekyll
28
run: bundle exec jekyll build
0 commit comments