Attempt to unmarshal response
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 1m0s

This commit is contained in:
Alexandre Bruyant 2024-01-07 21:50:02 +01:00
parent e57d2d9d1d
commit ba717cfdb6

13
main.go
View File

@ -168,11 +168,14 @@ func main() {
} }
githubactions.Infof("Response: %v", string(resBody)) githubactions.Infof("Response: %v", string(resBody))
d := json.NewDecoder(res.Body)
for {
var ipfsAddResponse []AddResponse var ipfsAddResponse []AddResponse
json.Unmarshal(resBody, &ipfsAddResponse) if err := d.Decode(&ipfsAddResponse); err == io.EOF {
if err != nil { break
githubactions.Fatalf(err.Error()) } else if err != nil {
githubactions.Warningf("Failed to unmarshal response: %v", fmt.Errorf("%w", err))
}
githubactions.Infof("Received response: %v", ipfsAddResponse)
} }
githubactions.Infof("Response: %v", ipfsAddResponse)
} }