Hello all!
Since past Thursday, using this cURL:
curl -X POST \
'https://api.appstoreconnect.apple.com/v1/ciBuildRuns' \
--header 'Accept: */*' \
--header 'User-Agent: Thunder Client (https://www.thunderclient.com)' \
--header 'Authorization: Bearer XXXX' \
--header 'Content-Type: application/json' \
--data-raw '{
"data": {
"type": "ciBuildRuns",
"attributes": {},
"relationships": {
"workflow": {
"data": {
"type": "ciWorkflows",
"id": "NNNN"
}
},
"sourceBranchOrTag": {
"data": {
"type": "scmGitReferences",
"id": "NNNN"
}
}
}
}
}
Of course, I removed the sensible information from my sample.
This is the response:
{
"errors": [
{
"status": "500",
"code": "UNEXPECTED_ERROR",
"title": "An unexpected error occurred.",
"detail": "An unexpected error occurred on the server side. If this issue continues, contact us at https://developer.apple.com/contact/."
}
]
}
I have written to Apple Support twice since they assure me that I will have a response in 2 working days, but I have not had any response.
The rest of the API calls work correctly.
Post
Replies
Boosts
Views
Activity
Hi everybody!
I have a Test Action step where I generate a .json file with the results, and I need to retrieve this file.
The way I'm trying to do is:
Generate the file
in ci_post_xcodebuild.sh, check if file exist
If file exists, copy into $CI_ARCHIVE_PATH
But looks like this $CI_ARCHIVE_PATH is not the correct way to copy file inside Archive.
Do we have a way to retrieve a file easily?