Merge pull request #5 from blue-build/module-args

feat: Add the ability to set env vars for module calls
This commit is contained in:
xyny 2025-06-30 13:12:20 +03:00 committed by GitHub
commit 031ccd0a85
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -125,6 +125,10 @@ model ModuleDefaults {
* https://blue-build.org/reference/module/#no-cache-optional
*/
`no-cache`?: boolean = false;
/** Environment variables to add for the module call.
*/
env?: Record<string>;
}
@jsonSchema("module-custom-v1.json")