-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
41 lines (41 loc) · 1.29 KB
/
action.yml
File metadata and controls
41 lines (41 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: 'Quant Cloud Environment'
description: 'Creates or updates an environment in Quant Cloud'
branding:
icon: 'cloud'
color: 'blue'
inputs:
api_key:
description: 'Quant API key'
required: true
organization:
description: 'Quant organisation ID'
required: true
app_name:
description: 'Name of your application'
required: true
environment_name:
description: 'Name for the environment'
required: true
base_url:
description: 'Quant Cloud API URL'
required: false
default: 'https://dashboard.quantcdn.io'
from_environment:
description: 'Name of the environment to clone configuration from (only used when creating a new environment)'
required: false
compose_spec:
description: 'Compose specification for the environment (required for updates, optional for new environments if from_environment is provided)'
required: false
image_suffix:
description: 'Suffix to append to container image names (e.g. "feature-xyz" transforms "cli-latest" to "cli-feature-xyz")'
required: false
operation:
description: 'Operation to perform: create, update, or delete'
required: false
default: 'create'
outputs:
environment_name:
description: 'The name of the created or updated environment'
runs:
using: 'node24'
main: 'dist/index.js'