-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
78 lines (78 loc) · 2.01 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: "homelab updater"
description: "small go tool to upate my homelab repo's dependencies"
author: "loeken"
inputs:
chart_name:
description: 'the name of the chart'
required: true
default: 'authelia'
values_chart_name:
description: 'the name of the chart'
required: true
default: 'certmanager'
remote_chart_name:
description: 'the name of the chart in loeken/helm-charts'
required: true
default: 'false'
chart_type:
description: 'if this is optional/core chart'
required: true
github_user:
description: 'which github user owns the repo'
required: true
default: 'authelia'
github_repo:
description: 'the name of the github repo'
required: true
default: authelia
docker_image:
description: address of the image
required: true
default: authelia/authelia
chart_version:
default: "authelia-0.8.55"
required: true
description: "the version of the helm chart"
chart_index_url:
default: "https://charts.authelia.com/index.yaml"
required: true
description: "the url of the charts index"
dockertag:
default: main
required: true
description: the docker tag
release_remove_string:
description: 'a string to be removed from the version'
required: true
default: 'authelia'
type:
description: jq syntax to extract last release
required: true
default: '.tag_name'
github_token:
description: the github token
required: true
self_managed_image:
description: if image is managed by me
required: true
default: "false"
self_managed_chart:
description: if helm chart is managed by me
required: true
default: "false"
dockertagprefix:
description: "overwrites dockertag"
required: true
default: ''
dockertagsuffix:
description: "overwrites dockertag"
required: true
default: ''
myOutput:
description: "Output from the action"
outputs:
latest_release:
description: "released version of app"
runs:
using: "docker"
image: "Dockerfile"