Skip to content

Commit

Permalink
fix(contrib/helm-push): type docker and chart path default value (#6861)
Browse files Browse the repository at this point in the history
Signed-off-by: francois.samin <[email protected]>
  • Loading branch information
fsamin authored Feb 23, 2024
1 parent 5aeb6a9 commit 5c307f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contrib/grpcplugins/action/helm-push/helm-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: |
This push Helm chart on Chart Museum or Artifactory.
inputs:
chartFolder:
default: .chart/
default: ./chart
type: string
description: Relative path to chart folder to be published
required: true
Expand Down
2 changes: 1 addition & 1 deletion contrib/grpcplugins/action/helm-push/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ func (p *helmPushPlugin) perform(
var runResultRequest = workerruntime.V2RunResultRequest{
RunResult: &sdk.V2WorkflowRunResult{
IssuedAt: time.Now(),
Type: sdk.V2WorkflowRunResultTypeDocker,
Type: sdk.V2WorkflowRunResultTypeHelm,
Status: sdk.V2WorkflowRunResultStatusPending,
Detail: sdk.V2WorkflowRunResultDetail{
Data: sdk.V2WorkflowRunResultHelmDetail{
Expand Down

0 comments on commit 5c307f0

Please sign in to comment.