tools/mdbook/action.yml
Adrian Wannenmacher 5ae1f78881
Some checks failed
Publish mdBook container / publish (push) Failing after 15s
mdbook: init
2023-12-14 04:47:54 +01:00

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 }}