mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 16:21:33 +11:00
Move book building to just as well
This commit is contained in:
parent
c228910885
commit
553ba33c82
3
.github/workflows/publish-agb.yml
vendored
3
.github/workflows/publish-agb.yml
vendored
|
@ -41,8 +41,7 @@ jobs:
|
||||||
- name: Install mdbook
|
- name: Install mdbook
|
||||||
run: cargo install mdbook
|
run: cargo install mdbook
|
||||||
- name: Build the book
|
- name: Build the book
|
||||||
run: mdbook build
|
run: just build-book
|
||||||
working-directory: book
|
|
||||||
- name: Deploy the book
|
- name: Deploy the book
|
||||||
uses: JamesIves/github-pages-deploy-action@v4.2.5
|
uses: JamesIves/github-pages-deploy-action@v4.2.5
|
||||||
with:
|
with:
|
||||||
|
|
3
justfile
3
justfile
|
@ -14,6 +14,9 @@ build-roms:
|
||||||
|
|
||||||
(cd examples/target && zip examples.zip examples/*.gba)
|
(cd examples/target && zip examples.zip examples/*.gba)
|
||||||
|
|
||||||
|
build-book:
|
||||||
|
(cd book && mdbook build)
|
||||||
|
|
||||||
_build-rom folder name:
|
_build-rom folder name:
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -euxo pipefail
|
set -euxo pipefail
|
||||||
|
|
Loading…
Reference in a new issue