Skip to content

Commit 4c2615f

Browse files
committed
missing prerelease fix
Signed-off-by: Sylwester Piskozub <sylwesterpiskozub@gmail.com>
1 parent a366ab0 commit 4c2615f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/controlplane/pkg/data/workflow.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ func (r *WorkflowRepo) Create(ctx context.Context, opts *biz.WorkflowCreateOpts)
104104
return fmt.Errorf("finding project version: %w", err)
105105
}
106106

107-
if _, err := createProjectVersionWithTx(ctx, tx, projectID, "", false); err != nil {
107+
if _, err := createProjectVersionWithTx(ctx, tx, projectID, "", true); err != nil {
108108
return fmt.Errorf("creating project version: %w", err)
109109
}
110110
}

0 commit comments

Comments
 (0)