16 lines
393 B
YAML
16 lines
393 B
YAML
name: "Markdown2Gemini"
|
|
description: "Simple conversion of a tree of markdown files to the gemini format."
|
|
inputs:
|
|
input-dir:
|
|
description: "Path to the input directory"
|
|
required: true
|
|
output-dir:
|
|
description: "Path to the output directory"
|
|
required: true
|
|
runs:
|
|
using: "docker"
|
|
image: "Containerfile"
|
|
args:
|
|
- ${{ inputs.input-dir }}
|
|
- ${{ inputs.output-dir }}
|