Skip to content

Commit

Permalink
fix(publish): use release directory name for the tag
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Schoone <[email protected]>
  • Loading branch information
jschoone committed Sep 16, 2024
1 parent 8534658 commit fe7c931
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cmd/publish.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ func GetPublishOptions(ctx context.Context, clusterStackPath string) (*PublishOp
return nil, fmt.Errorf("failed to get cluster stack release directory name: %w", err)
}

publishOption.releaseName, err = clusterstack.GetClusterStackReleaseName(publishOption.Metadata, publishOption.Config)
publishOption.releaseName, err = clusterstack.GetClusterStackReleaseDirectoryName(publishOption.Metadata, publishOption.Config)
if err != nil {
return nil, fmt.Errorf("failed to get cluster stack release name: %w", err)
}
Expand Down

0 comments on commit fe7c931

Please sign in to comment.