diff --git a/.github/actions/install_asciidoctor/action.yml b/.github/actions/install_asciidoctor/action.yml new file mode 100644 index 00000000..1dae4ede --- /dev/null +++ b/.github/actions/install_asciidoctor/action.yml @@ -0,0 +1,10 @@ +name: install_asciidoctor +runs: + using: composite + steps: + - uses: actions/checkout@v4.1.0 + - name: Install asciidoctor + run: |- + sudo apt-get update + sudo apt install -y asciidoctor + shell: bash \ No newline at end of file