This repository has been archived by the owner on Oct 29, 2022. It is now read-only.
forked from ncats/cg-cli-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
54 lines (54 loc) · 1.81 KB
/
action.yml
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
42
43
44
45
46
47
48
49
50
51
52
53
54
name: "Cloud.gov CF CLI Tools"
description: "Deploy and manage apps on cloud.gov"
inputs:
cf_api:
description: "Target API endpoint. Defaults to api.fr.cloud.gov."
required: false
cf_username:
description: "Username for API authentication"
required: true
cf_password:
description: "Password for API authentication"
required: true
cf_docker_password:
description: "Password for Docker registry authentication"
required: false
cf_org:
description: "Target organization"
required: true
cf_space:
description: "Target space"
required: true
cf_manifest:
description: "Manifest file name to use for pushing. Defaults to 'manifest.yml'."
required: false
cf_vars_file:
description: "Name of the vars file to use"
required: false
cf_command:
description: "CF CLI subcommand to run. Mutually exclusive with 'command:'."
required: false
command:
description: "Command to run. Mutually exclusive with other commands"
required: false
flyway_docker_command:
description: "Runs flyway by using already deployed app (deploy_app_from_config_command). Mutually exclusive with other commands"
required: false
deploy_app_from_config_command:
description: "Deploys app in stopped state. The app could be used to run jobs. Mutually exclusive with other commands"
required: false
service_command:
description: "Deploys service and waits for service to complete. Mutually exclusive with other commands"
required: false
user_service_command:
description: "Deploys user service from the file"
required: false
user_service_name:
description: "Name of the users service"
required: false
database_name:
description: "Database to be used by flyway job"
required: false
runs:
using: "docker"
image: "Dockerfile"