19 lines
400 B
YAML
19 lines
400 B
YAML
|
name: mdBook
|
||
|
description: Build mdBook book
|
||
|
inputs:
|
||
|
source:
|
||
|
description: Where to find the books source.
|
||
|
default: /book
|
||
|
destination:
|
||
|
description: Where to put the rendered content.
|
||
|
default: /rendered
|
||
|
runs:
|
||
|
using: docker
|
||
|
image: docker://git.tfld.dev/tfld/tools-mdbook
|
||
|
args:
|
||
|
- mdbook
|
||
|
- build
|
||
|
- --dest-dir
|
||
|
- ${{ inputs.destination }}
|
||
|
- ${{ inputs.source }}
|