Skip to content

Commit d222b4e

Browse files
authored
fix(cli): Add missing prerelease value to wf run ls command (#1879)
Signed-off-by: Javier Rodriguez <javier@chainloop.dev>
1 parent a30d9fe commit d222b4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/cli/cmd/workflow_workflow_run_list.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ func workflowRunListTableOutput(runs []*action.WorkflowRunItem) error {
105105

106106
for _, p := range runs {
107107
wf := p.Workflow
108-
r := table.Row{p.ID, wf.NamespacedName(), versionString(p.ProjectVersion), p.State, p.CreatedAt.Format(time.RFC822), p.RunnerType}
108+
r := table.Row{p.ID, wf.NamespacedName(), p.ProjectVersion.Version, p.ProjectVersion.Prerelease, p.State, p.CreatedAt.Format(time.RFC822), p.RunnerType}
109109

110110
if full {
111111
var finishedAt string

0 commit comments

Comments
 (0)