-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
62 lines (59 loc) · 1.93 KB
/
action.yml
File metadata and controls
62 lines (59 loc) · 1.93 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: 'Digital.ai Deploy Integration'
description: 'Github Actions for Digital.ai Deploy'
author: 'Digital.ai'
branding:
color: 'green'
icon: 'upload-cloud'
inputs:
serverUrl:
description: 'The URL of the Digital.ai Deploy server'
required: true
username:
description: 'The username for authenticating with Digital.ai Deploy'
required: true
password:
description: 'The password for authenticating with Digital.ai Deploy'
required: true
action:
description: 'Action to perform: create, publish, deploy. Default is create, publish, and deploy'
required: false
default: 'create_publish_deploy'
manifestPath:
description: 'The path to the manifest xml file'
required: false
outputPath:
description: 'The path for storing the newly created DAR package'
required: false
packageName:
description: 'The name of the newly created DAR package'
required: false
versionNumber:
description: 'Specify a version number to set in your manifest file'
required: false
darPackagePath:
description: 'The path to the DAR package'
required: false
deploymentPackageId:
description: 'The ID of the package to be deployed'
required: false
environmentId:
description: 'The ID of the target environment in Digital.ai Deploy'
required: false
rollback:
description: 'Invoke a rollback in case of deployment failure'
required: false
maxTransientRetries:
description: 'The maximum number of retries when encountering transient errors'
required: false
outputs:
deploymentPackageId:
description: 'The ID of the published package'
darPackagePath:
description: 'The relative path to the DAR package created by the action'
deploymentTaskId:
description: 'The ID of the deployment task created by the action'
rollbackTaskId:
description: 'The ID of the rollback task created by the action'
runs:
using: 'node20'
main: 'dist/index.js'