-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
52 lines (52 loc) · 1.66 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
---
name: 'Deploy to Arc XP'
description: 'This is an action which makes it convenient to deploy to Arc XP'
author: 'Arc XP'
branding:
icon: 'truck'
color: 'blue'
runs:
using: node20
main: dist/index.cjs
inputs:
# Stuff we need for this action
org-id:
description: 'The organization ID for the Arc XP organization'
required: true
api-key:
description: 'The API key for Arc XP organization'
required: true
api-hostname:
description: 'The API hostname for Arc XP organization'
required: true
pagebuilder-version:
description: 'The PageBuilder version you wish to deploy with'
required: false
default: 'latest'
bundle-prefix:
description: 'The prefix for the bundle name, which is used to identify the bundle in the Arc XP UI'
required: true
artifact:
description: 'The artifact to be uploaded to Arc XP PageBuilder'
required: true
default: 'dist/fusion-bundle.zip'
retry-count:
description: 'The number of times to retry the deployment if it fails'
required: true
default: 10
retry-delay:
description: 'The number of seconds to wait between retries'
required: true
default: 5
minimum-running-versions:
description: The minimum number of versions to keep in a "deployed" state at any given time. The maximum is 10, the minimum is 1.
required: true
default: 7
deploy:
description: This is an option that would allow you to skip deployment.
required: false
default: true
promote:
description: This is an option that would allow you to skip promoting a version. If `deploy` is false, and this is true, the workflow will fail.
required: false
default: true