https://github.com/kmacedovarela/single-adoc-generator-action
https://github.com/kmacedovarela/single-adoc-generator-action
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kmacedovarela/single-adoc-generator-action
- Owner: kmacedovarela
- Created: 2022-07-08T20:40:47.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-18T14:27:04.000Z (about 3 years ago)
- Last Synced: 2025-03-20T07:06:19.539Z (7 months ago)
- Language: Ruby
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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'