Skip to content

Commit 9595df7

Browse files
fix: Explicitly install bundler dependencies before jekyll build
1 parent 8a572cf commit 9595df7

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/pipe.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,13 @@ jobs:
4545
yarn
4646
yarn dist
4747
- name: Setup Ruby
48-
# https://github.com/ruby/setup-ruby/releases/tag/v1.207.0
4948
uses: ruby/setup-ruby@v1
5049
with:
51-
ruby-version: '3.1' # Not needed with a .ruby-version file
52-
bundle-cache: true
50+
ruby-version: '3.1'
51+
- name: Install Ruby dependencies
52+
run: |
53+
bundle config set --local deployment 'true'
54+
bundle install --jobs 4 --retry 3
5355
- name: Setup Pages
5456
id: pages
5557
uses: actions/configure-pages@v5

0 commit comments

Comments
 (0)