-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
45 lines (44 loc) · 1.29 KB
/
action.yml
File metadata and controls
45 lines (44 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
42
43
44
45
name: "SAP BTP CF Deploy"
description: Deploys an MTA file to Cloud Foundry on SAP Business Technology Platform
branding:
icon: "upload-cloud"
color: "black"
inputs:
mtafile:
description: Path to your MTA file, relative to the workspace
required: true
api:
description: Cloud Foundry API endpoint. Default is $CF_API
required: false
username:
description: Cloud Foundry username. Default is $CF_USERNAME
required: false
password:
description: Cloud Foundry password. Default is $CF_PASSWORD
required: false
org:
description: Cloud Foundry organization. Default is $CF_ORG
required: false
space:
description: Cloud Foundry space to deploy to. Default is $CF_SPACE
required: false
createspace:
description: Whether to create the given space
required: false
default: "false"
findurl_command:
description: Bash command that determines the application's main URL
required: false
findurl_regex:
description: Regex that scans the result of 'findurl_command'
required: false
default: "https.*"
deployparams:
description: Deployment parameters
required: false
outputs:
url:
description: The applications's main URL (only if 'findurl_command' is set and successful)
runs:
using: docker
image: Dockerfile