Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
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
8 changes: 4 additions & 4 deletions sdk/exportentities/workflow_tar.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ func (w WorkflowComponents) ToRaw() (WorkflowComponentsRaw, error) {
}

type WorkflowComponentsRaw struct {
Workflow string
Applications []string
Pipelines []string
Environments []string
Workflow string `json:"workflow,omitempty"`
Applications []string `json:"applications,omitempty"`
Pipelines []string `json:"pipelines,omitempty"`
Environments []string `json:"environments,omitempty"`
}

// TarWorkflowComponents returns a tar containing all files for a workflow.
Expand Down