Add composite action install_asciidoctor

This commit is contained in:
2024-07-06 08:00:39 -05:00
parent 3273e56b17
commit 8395dfaa52

View File

@ -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