Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions apps/publish.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,11 @@ func Publish(cmd *cobra.Command, args []string) error {
return err
}

// do not publish app to marketplace if not custom type
if manifestInputs.Type != AppTypeCustom {
return nil
}

marketplaceEntry := NewAppMarketplaceEntry(manifestInputs)
marketplaceEntry.AppID = app.ID

Expand Down