Skip to content

Commit 80bbcd6

Browse files
committed
fix deploy error in default workflow @ alshedivat/al-folio#1545 (comment)
1 parent 115a5eb commit 80bbcd6

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/jekyll.yml

+12
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,18 @@ jobs:
3939
ruby-version: '3.1' # Not needed with a .ruby-version file
4040
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
4141
cache-version: 0 # Increment this number if you need to re-download cached gems
42+
- name: Install Node.js for Mermaid CLI
43+
uses: actions/setup-node@v3
44+
with:
45+
node-version: "14"
46+
- name: Install Mermaid CLI
47+
run: npm install -g @mermaid-js/mermaid-cli
48+
- name: Install Python for Jupyter
49+
uses: actions/setup-python@v4
50+
with:
51+
python-version: "3.9"
52+
- name: Install Jupyter
53+
run: pip install jupyter
4254
- name: Setup Pages
4355
id: pages
4456
uses: actions/configure-pages@v5

0 commit comments

Comments
 (0)