convert to string before log
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 55s

This commit is contained in:
Alexandre Bruyant 2024-01-07 13:06:21 +01:00
parent 24294064bf
commit 8ecac01dc5

View File

@ -121,7 +121,7 @@ func main() {
githubactions.Fatalf(err.Error()) githubactions.Fatalf(err.Error())
} }
githubactions.Infof("Response: %v", resBody) githubactions.Infof("Response: %v", string(resBody))
var ipfsAddResponse AddResponse var ipfsAddResponse AddResponse
json.Unmarshal(resBody, &ipfsAddResponse) json.Unmarshal(resBody, &ipfsAddResponse)