Skip to content

GitHub Action that installs asciidoctor

License

Notifications You must be signed in to change notification settings

reitzig/actions-asciidoctor

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

license release GitHub release date Test

Asciidoctor Setup Action

This Action can install Asciidoctor to a virtual machine of GitHub Actions.

Usage

Given that Ruby has already been installed (e.g. by ruby/setup-ruby), include this in your workflow:

 - uses: reitzig/[email protected]

These inputs are allowed:

Working Example

name: Asciidoctor Demo

on:
  push:
    branches:
      - master

jobs:
  example:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: 2.7

      - uses: reitzig/[email protected]
        with:
          version: 2.0.18

      - run: asciidoctor --version

Acknowledgements