We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a572cf commit 9595df7Copy full SHA for 9595df7
1 file changed
.github/workflows/pipe.yaml
@@ -45,11 +45,13 @@ jobs:
45
yarn
46
yarn dist
47
- name: Setup Ruby
48
- # https://github.com/ruby/setup-ruby/releases/tag/v1.207.0
49
uses: ruby/setup-ruby@v1
50
with:
51
- ruby-version: '3.1' # Not needed with a .ruby-version file
52
- bundle-cache: true
+ ruby-version: '3.1'
+ - name: Install Ruby dependencies
+ run: |
53
+ bundle config set --local deployment 'true'
54
+ bundle install --jobs 4 --retry 3
55
- name: Setup Pages
56
id: pages
57
uses: actions/configure-pages@v5
0 commit comments