Skip to content

Commit 106e537

Browse files
Update jekyll.yml
Temporarily disable bundler cache to avoid activesupport platform conflicts
1 parent 063e727 commit 106e537

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/jekyll.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ jobs:
3030
# Build job
3131
build:
3232
runs-on: ubuntu-latest
33+
env:
34+
BUNDLE_FORCE_RUBY_PLATFORM: true
3335
steps:
3436
- name: Checkout
3537
uses: actions/checkout@v4
@@ -38,8 +40,10 @@ jobs:
3840
uses: ruby/setup-ruby@4a9ddd6f338a97768b8006bf671dfbad383215f4
3941
with:
4042
ruby-version: '3.1' # Not needed with a .ruby-version file
41-
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
42-
cache-version: 0 # Increment this number if you need to re-download cached gems
43+
# bundler-cache: true # runs 'bundle install' and caches installed gems automatically
44+
# cache-version: 0 # Increment this number if you need to re-download cached gems
45+
- name: Install dependencies #new
46+
run: bundle install #new
4347
- name: Setup Pages
4448
id: pages
4549
uses: actions/configure-pages@v5

0 commit comments

Comments
 (0)