tools/mdbook/action.yml

19 lines
400 B
YAML
Raw Normal View History

2023-12-14 04:47:54 +01:00
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 }}