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

15
main.go
View File

@ -168,11 +168,14 @@ func main() {
} }
githubactions.Infof("Response: %v", string(resBody)) githubactions.Infof("Response: %v", string(resBody))
var ipfsAddResponse []AddResponse d := json.NewDecoder(res.Body)
json.Unmarshal(resBody, &ipfsAddResponse) for {
if err != nil { var ipfsAddResponse []AddResponse
githubactions.Fatalf(err.Error()) if err := d.Decode(&ipfsAddResponse); err == io.EOF {
break
} 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)
} }