Upload Build environment variables from a JSON file to a variable group.
appcircle build variable group upload [options]
$ appcircle build variable group upload --variableGroupId "Variable Group ID" --filePath "/path/to/variables.json"
--variableGroupId <uuid> Variable Group ID
--filePath <string> JSON file path
--help Show help for command
The JSON file should be in the following format:
[
{
"key": "VARIABLE_NAME",
"value": "variable_value",
"isSecret": false,
"isFile": false,
"id": "VARIABLE_NAME"
},
...
]