Adrian Wannenmacher
5ae1f78881
Some checks failed
Publish mdBook container / publish (push) Failing after 15s
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 }}
|