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?
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.