I am trying to deploy my apk files to downloads section of Bitbucket in my Bitbucket pipelines.
The apk file is around 10 MBs and I use the CURL command below to make the deploy.
- curl -v -u "${PIPELINE_USER}:${BB_AUTH_STRING}" -X POST "https://api.bitbucket.org/2.0/repositories/${BITBUCKET_REPO_OWNER}/${BITBUCKET_REPO_SLUG}/downloads" -F files=@"app/build/outputs/apk/release/app-release-$VERSION.apk"But it does not work. I have the error below on my pipeline
Warning: setting file Warning: app/build/outputs/apk/release/app-release-1.1.2.apk failed!
Note: Unnecessary use of -X or --request, POST is already inferred.
{ [5 bytes data]* 
Connection state changed (MAX_CONCURRENT_STREAMS updated)!} 
[5 bytes data]* read function returned funny value
* Connection #0 to host api.bitbucket.org left intact
curl: (26) read function returned funny value
What is the reason of that issue and how can I solve it?
Any  help would be appreciated.
Hi Mustafa,
Does this only fail in Pipelines? ie. have you tried running that curl command from your local machine?
 
 
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.