This repository contains a GitHub Action for using the standalone generator from ModuleStudio.
The standalone generator is always providing the latest Git revision of the generator's project.
- Full name of your model file. Example:
AcmeNews.mostapp
. - Name of your module including the vendor and the
Module
suffix. Example:Acme/NewsModule
. - Path to the directory containing the
extensions/
folder (including trailing slash). Default""
. - Whether to enable verbose output (set to
true
). Defaultfalse
.
Generated files.
uses: docker://guite/generator-action:latest
with:
args: MultiHook.mostapp Zikula/MultiHookModule src/ true
A sample project using this GitHub Action can be found here.
The Docker image for this action is built automatically and located here: https://hub.docker.com/r/guite/generator-action.
You can run it in any given directory like this:
docker run --rm -it -w=/app -v ${PWD}:/app guite/generator-action:latest MultiHook.mostapp Zikula/MultiHookModule src/ true