added build vars

This commit is contained in:
2022-08-12 00:54:22 +02:00
parent 5da6b35ead
commit 864c7a7dac
5 changed files with 83 additions and 12 deletions

View File

@@ -63,6 +63,35 @@
}
},
"additionalProperties": false
},
"args": {
"title": "arguments to send to the specified script",
"type": "object",
"patternProperties": {
"^.*$": {
"anyOf": [
{
"type": "object",
"required": [
"type",
"key"
],
"additionalProperties": false,
"properties": {
"type": {
"enum": [
"env"
]
},
"key": {
"title": "the environment key to pull arg from",
"type": "string"
}
}
}
]
}
}
}
}
}