We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5aee89 commit 2545963Copy full SHA for 2545963
2 files changed
.github/workflows/pages.yml
@@ -22,8 +22,8 @@ jobs:
22
23
- name: "mdbook"
24
run: |
25
- cargo install mdbook
26
- mdbook build && mv book _site
+ cargo install mdbook just
+ just build-book-gha
27
28
# OPTIONAL: Replace the above with one of these for your project:
29
#
justfile
@@ -24,3 +24,12 @@ export-presentation:
[working-directory: 'book']
book:
mdbook serve --open
+
+[working-directory: 'book']
+build-book:
30
+ mdbook build
31
32
33
+build-book-gha:
34
+ just build-book
35
+ mv book ../_site
0 commit comments