Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 817 Bytes

File metadata and controls

43 lines (32 loc) · 817 Bytes

appcircle build variable group upload

Upload Build environment variables from a JSON file to a variable group.

appcircle build variable group upload [options]

Examples

$ appcircle build variable group upload --variableGroupId "Variable Group ID" --filePath "/path/to/variables.json"

Options

      --variableGroupId <uuid>  Variable Group ID
      --filePath <string>       JSON file path

Options inherited from parent commands

      --help   Show help for command

JSON File Format

The JSON file should be in the following format:

[
  {
    "key": "VARIABLE_NAME",
    "value": "variable_value",
    "isSecret": false,
    "isFile": false,
    "id": "VARIABLE_NAME"
  },
  ...
]