Skip to content

Commit 1daa06d

Browse files
New action options and fix for version update
New action options and fix for version update
1 parent 1a8eeec commit 1daa06d

File tree

13 files changed

+4890
-4626
lines changed

13 files changed

+4890
-4626
lines changed

README.md

Lines changed: 177 additions & 27 deletions
Large diffs are not rendered by default.

action.yml

Lines changed: 24 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,40 +7,53 @@ branding:
77

88
inputs:
99
serverUrl:
10-
description: 'The URL of the Digital.ai Deploy server.'
10+
description: 'The URL of the Digital.ai Deploy server'
1111
required: true
1212
username:
13-
description: 'The username for authenticating with Digital.ai Deploy.'
13+
description: 'The username for authenticating with Digital.ai Deploy'
1414
required: true
1515
password:
16-
description: 'The password for authenticating with Digital.ai Deploy.'
16+
description: 'The password for authenticating with Digital.ai Deploy'
1717
required: true
1818
action:
19-
description: 'Action to perform: create, publish, deploy. Default is create, publish, and deploy.'
19+
description: 'Action to perform: create, publish, deploy. Default is create, publish, and deploy'
2020
required: false
2121
default: 'create_publish_deploy'
2222
manifestPath:
23-
description: 'The path to the deployit-manifest.xml file.'
23+
description: 'The path to the manifest xml file'
2424
required: false
2525
outputPath:
26-
description: 'The path for storing the newly created DAR package.'
26+
description: 'The path for storing the newly created DAR package'
2727
required: false
2828
packageName:
29-
description: 'The name of the newly created DAR package.'
29+
description: 'The name of the newly created DAR package'
3030
required: false
3131
versionNumber:
32-
description: 'Specify a version number to set in your manifest file.'
32+
description: 'Specify a version number to set in your manifest file'
3333
required: false
3434
darPackagePath:
35-
description: 'The path to the DAR package.'
35+
description: 'The path to the DAR package'
36+
required: false
37+
deploymentPackageId:
38+
description: 'The ID of the package to be deployed'
3639
required: false
3740
environmentId:
38-
description: 'ID of the target environment in Digital.ai Deploy.'
41+
description: 'The ID of the target environment in Digital.ai Deploy'
3942
required: false
4043
rollback:
41-
description: 'Invoke a rollback in case of deployment failure.'
44+
description: 'Invoke a rollback in case of deployment failure'
4245
required: false
4346

47+
outputs:
48+
deploymentPackageId:
49+
description: 'The ID of the published package'
50+
darPackagePath:
51+
description: 'The relative path to the DAR package created by the action'
52+
deploymentTaskId:
53+
description: 'The ID of the deployment task created by the action'
54+
rollbackTaskId:
55+
description: 'The ID of the rollback task created by the action'
56+
4457
runs:
4558
using: 'node20'
4659
main: 'dist/index.js'

0 commit comments

Comments
 (0)