-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
35 lines (35 loc) · 1.06 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
name: 'horizon-deploy'
description: 'deploy your changes to horizon'
author: 'horizoncd'
inputs:
token:
required: true
description: 'token with cluster-write permissions for horizon'
addr:
required: true
description: 'address of the horizon instance'
deployMethod:
required: true
description: 'buildDeploy or imageDeploy, method to deploy the app'
title:
required: true
description: 'title of the releasing'
description:
required: false
description: 'description of the releasing'
default: 'default value if empty'
clusterID:
required: true
description: 'clusterID of the releasing, must be an number'
tag:
required: false
description: 'tag of the image which are going to be deployed, required if deployMethod is "imageDeploy"'
gitRefType:
required: false
description: 'branch, tag or commit only, required if deployMethod is "buildDeploy"'
ref:
required: false
description: 'depends on "gitRefType", required if deployMethod is "buildDeploy"'
runs:
using: 'node16'
main: 'dist/index.js'