-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yaml
57 lines (57 loc) · 1.6 KB
/
action.yaml
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
name: 'Platformer Deployer'
description: 'Deploy newly built docker images to kubernetes through the Platformer Console'
author: Platformer
branding:
icon: 'arrow-up-circle'
color: 'blue'
inputs:
domain:
description: 'Platformer API Domain. Typically (https://api.platformer.com)'
required: false
default: 'https://beta.api.platformer.com'
org-id:
description: 'Platformer Organization ID'
required: true
default: ''
project-id:
description: 'Platformer Project ID'
required: true
default: ''
image-name:
description: 'Name of the image'
required: true
default: ''
tag:
description: 'Name of the built tag'
required: true
default: 'latest'
container-id:
description: 'For Direct environment deployments'
required: false
default: ''
image-registry-id:
description: 'To just push to the Platformer Registry and update all asscociated containers which has auto deploy turned on'
required: false
default: ''
channel:
description: 'Channels allow you to version your builds within Platformer Console'
required: false
default: 'default'
update-type:
description: 'How platformer should version update the image (patch,minor,major)'
required: false
default: 'patch'
token:
description: 'Service Account token for Platformer. (Mount on Secrets)'
required: true
default: ''
debug:
description: 'Enable request debug'
required: false
default: false
outputs:
platformer-status:
description: 'Status of the Webhook Call to Platformer'
runs:
using: 'node12'
main: 'index.js'