We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2cd90b commit e1e3b33Copy full SHA for e1e3b33
1 file changed
.github/workflows/jekyll-gh-pages.yml
@@ -35,9 +35,11 @@ jobs:
35
- name: Build with Jekyll
36
run: |
37
cd www
38
- gem install bundler -v "~> 2.4"
39
- bundle install
40
- bundle exec jekyll build
+ gem install bundler -v "~> 2.6"
+ # Use the full path to the new bundler to avoid using the pre-installed one
+ $(which bundle) --version
41
+ $(which bundle) install
42
+ $(which bundle) exec jekyll build
43
env:
44
JEKYLL_ENV: production
45
0 commit comments