Skip to content

Commit 5c307f0

Browse files
authored
fix(contrib/helm-push): type docker and chart path default value (#6861)
Signed-off-by: francois.samin <francois.samin@corp.ovh.com>
1 parent 5aeb6a9 commit 5c307f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contrib/grpcplugins/action/helm-push/helm-push.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: |
55
This push Helm chart on Chart Museum or Artifactory.
66
inputs:
77
chartFolder:
8-
default: .chart/
8+
default: ./chart
99
type: string
1010
description: Relative path to chart folder to be published
1111
required: true

contrib/grpcplugins/action/helm-push/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ func (p *helmPushPlugin) perform(
117117
var runResultRequest = workerruntime.V2RunResultRequest{
118118
RunResult: &sdk.V2WorkflowRunResult{
119119
IssuedAt: time.Now(),
120-
Type: sdk.V2WorkflowRunResultTypeDocker,
120+
Type: sdk.V2WorkflowRunResultTypeHelm,
121121
Status: sdk.V2WorkflowRunResultStatusPending,
122122
Detail: sdk.V2WorkflowRunResultDetail{
123123
Data: sdk.V2WorkflowRunResultHelmDetail{

0 commit comments

Comments
 (0)