(configPath string)
| 137 | } |
| 138 | |
| 139 | func getDeploymentBytes(configPath string) (map[string][]byte, error) { |
| 140 | configBytes, err := files.ReadFileBytes(configPath) |
| 141 | if err != nil { |
| 142 | return nil, err |
| 143 | } |
| 144 | |
| 145 | uploadBytes := map[string][]byte{ |
| 146 | "config": configBytes, |
| 147 | } |
| 148 | |
| 149 | return uploadBytes, nil |
| 150 | } |
| 151 | |
| 152 | func mergeResultMessages(results []schema.DeployResult) string { |
| 153 | var okMessages []string |
no test coverage detected