We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f416fe9 + 5877b71 commit 5375475Copy full SHA for 5375475
.github/workflows/deploy.yml
@@ -18,8 +18,20 @@ jobs:
18
with:
19
node-version: 22
20
21
- - name: Install dependencies
22
- run: npm ci # Or the appropriate command to install dependencies
+ - name: Set up Ruby
+ uses: ruby/setup-ruby@v1
23
+ with:
24
+ ruby-version: '3.1'
25
+ bundler-cache: true
26
+ working-directory: docs
27
+
28
+ - name: Install Node.js dependencies
29
+ run: npm ci
30
31
+ - name: Install Jekyll dependencies
32
+ run: |
33
+ cd docs
34
+ bundle install
35
36
- name: Build the library
37
run: npm run build
@@ -34,4 +46,4 @@ jobs:
46
uses: peaceiris/actions-gh-pages@v3
47
48
github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: ./dist
49
+ publish_dir: ./dist
0 commit comments