Skip to content

Commit b6852a2

Browse files
committed
fix workflow
1 parent a159bff commit b6852a2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/deploy_book.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ jobs:
2727
- name: Set up Python 3.12
2828
uses: actions/setup-python@v5
2929
with:
30-
python-version: '3.11'
30+
python-version: '3.12'
3131
cache: pip # Implicitly uses requirements.txt for cache key
3232

3333
- name: Install dependencies
34-
run: pip install -r cheatsheet/requirements.txt
34+
run: pip install -r arch134b_workshops/requirements.txt
3535

3636
# (optional) Cache your executed notebooks between runs
3737
# if you have config:
@@ -46,13 +46,13 @@ jobs:
4646
# Build the book
4747
- name: Build the book
4848
run: |
49-
jupyter-book build cheatsheet/
49+
jupyter-book build arch134b_workshops/
5050
5151
# Upload the book's HTML as an artifact
5252
- name: Upload artifact
5353
uses: actions/upload-pages-artifact@v3
5454
with:
55-
path: "cheatsheet/_build/html"
55+
path: "arch134b_workshops/_build/html"
5656

5757
# Deploy the book's HTML to GitHub Pages
5858
- name: Deploy to GitHub Pages

0 commit comments

Comments
 (0)