From d42c7bc12a854c47aaef4d815d88ad7300313801 Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Sat, 13 Apr 2024 16:15:15 -0500 Subject: [PATCH] fix missing input on action --- .github/actions/markdown2gempost/action.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/actions/markdown2gempost/action.yml b/.github/actions/markdown2gempost/action.yml index b3fac0c..8b251aa 100644 --- a/.github/actions/markdown2gempost/action.yml +++ b/.github/actions/markdown2gempost/action.yml @@ -1,5 +1,5 @@ -name: 'Markdown to Gempost' -description: 'Convert Markdown posts to Gemini posts with YAML sidecars for use with Gempost' +name: 'Convert Markdown to Gempost' +description: 'Convert Markdown posts to Gemtext with YAML sidecars for use with Gempost' inputs: input-dir: description: 'The directory containing markdown files' @@ -7,6 +7,9 @@ inputs: output-dir: description: 'The directory to write gemini files to' required: true + processed-dir: + description: 'The directory to move processed markdown files to' + required: true runs: using: 'docker' image: 'Dockerfile'