Skip to content

Commit e1e3b33

Browse files
committed
Fix Bundler version conflict by using explicit path to new Bundler
1 parent c2cd90b commit e1e3b33

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/jekyll-gh-pages.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,11 @@ jobs:
3535
- name: Build with Jekyll
3636
run: |
3737
cd www
38-
gem install bundler -v "~> 2.4"
39-
bundle install
40-
bundle exec jekyll build
38+
gem install bundler -v "~> 2.6"
39+
# Use the full path to the new bundler to avoid using the pre-installed one
40+
$(which bundle) --version
41+
$(which bundle) install
42+
$(which bundle) exec jekyll build
4143
env:
4244
JEKYLL_ENV: production
4345

0 commit comments

Comments
 (0)