-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
41 lines (38 loc) · 904 Bytes
/
action.yml
File metadata and controls
41 lines (38 loc) · 904 Bytes
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: "MobiledgeX Deploy"
description: "Deploy app to the MobiledgeX platform"
inputs:
setup:
description: The setup to deploy the app to
required: true
default: main
username:
description: Console username
required: true
password:
description: Console password
required: true
appconfig:
description: Path to app config
required: true
default: .mobiledgex/app.yml
appinstsconfig:
description: Path to app instances config
required: true
default: .mobiledgex/appinsts.yml
outputs:
setup:
description: Setup app is deployed in
image:
description: Image path for the app
deployments:
description: App instance deployments
runs:
using: docker
image: Dockerfile
args:
- "--setup"
- ${{ inputs.setup }}
- "--appconfig"
- ${{ inputs.appconfig }}
- "--appinstsconfig"
- ${{ inputs.appinstsconfig }}