An open API service indexing awesome lists of open source software.

https://github.com/kmacedovarela/single-adoc-generator-action


https://github.com/kmacedovarela/single-adoc-generator-action

Last synced: 7 months ago
JSON representation

Awesome Lists containing this project

README

          

# Asciidoc single file generator github action

This action can process an adoc file with multiple includes of partials, tags, etc., and generate a new, raw (adoc), single file with existing content plus all the content from other
included references.

## Inputs

## `file-to-process`

**Required** The full path to the file that should be processed. Example: `path/to/my/file/tobeprocessed.adoc`

## `generated-file-path`

Path in the current repository where the generated file should be stored.

## Outputs

## `generated-file`

The generated file with raw adoc included content.

## Example usage

uses: actions/single-adoc-generator-action@v1
with:
file-to-process: 'path/to/my/file/tobeprocessed.adoc'
generated-file-path: '/path/to/store/generated/file'