Skip to content

Commit 2545963

Browse files
committed
fix path
1 parent f5aee89 commit 2545963

2 files changed

Lines changed: 11 additions & 2 deletions

File tree

.github/workflows/pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222

2323
- name: "mdbook"
2424
run: |
25-
cargo install mdbook
26-
mdbook build && mv book _site
25+
cargo install mdbook just
26+
just build-book-gha
2727
2828
# OPTIONAL: Replace the above with one of these for your project:
2929
#

justfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,12 @@ export-presentation:
2424
[working-directory: 'book']
2525
book:
2626
mdbook serve --open
27+
28+
[working-directory: 'book']
29+
build-book:
30+
mdbook build
31+
32+
[working-directory: 'book']
33+
build-book-gha:
34+
just build-book
35+
mv book ../_site

0 commit comments

Comments
 (0)