-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yaml
32 lines (32 loc) · 844 Bytes
/
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
name: 'Helm Chart Build'
description: 'Package and Push a helm chart to a Chartmuseum repo'
inputs:
REPO_NAME:
description: 'Name of repository'
required: true
default: ''
CHART_SUBDIR:
description: 'Name of the subdirectory in the repository'
required: true
HELM_REPO_URL:
description: 'URL of the repository to push to'
required: true
UPDATE_DEPENDENCIES:
description: 'Update Helm Dependencies'
required: false
default: 'true'
HELM_TAG:
description: 'Tag for the packaged helm chart'
required: true
outputs:
RESPONSE:
description: 'Response from chartmuseum'
runs:
using: docker
image: 'Dockerfile'
args:
- ${{ inputs.REPO_NAME }}
- ${{ inputs.CHART_SUBDIR }}
- ${{ inputs.HELM_REPO_URL }}
- ${{ inputs.UPDATE_DEPENDENCIES }}
- ${{ inputs.HELM_TAG }}