From d11ae90ad6b81697d0063f5cea544d160ee876ef Mon Sep 17 00:00:00 2001 From: James Maes Date: Sat, 6 Jul 2024 08:00:40 -0500 Subject: [PATCH] Add composite action run_asciidoctor --- .github/actions/run_asciidoctor/action.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/actions/run_asciidoctor/action.yml diff --git a/.github/actions/run_asciidoctor/action.yml b/.github/actions/run_asciidoctor/action.yml new file mode 100644 index 00000000..4a13752f --- /dev/null +++ b/.github/actions/run_asciidoctor/action.yml @@ -0,0 +1,9 @@ +name: run_asciidoctor +runs: + using: composite + steps: + - name: Run asciidoctor + run: |- + cd docs + asciidoctor -a docinfo=shared index.adoc + shell: bash \ No newline at end of file