nomad-cli / shenzhen

CLI for Building & Distributing iOS Apps (.ipa Files)
MIT License
4.65k stars 493 forks source link

distribute:hockeyapp: Feature request: update hockey if version exist. #308

Closed yakimant closed 3 years ago

yakimant commented 9 years ago

While uploading a dSYM file without ipa - is it possible to append dSYMs to existing version, rather, then creating a new one.

In my shell scripts I do:

curl -s -X PUT -F "dsym=@dSYM.zip" -H "X-HockeyAppToken: ${TOKEN}" https://rink.hockeyapp.net/api/2/apps/${APP_ID}/app_versions/${ID}

than there is an ${ID} for needed some version.

And:

curl -s -F "dsym=@dSYM.zip" -H "X-HockeyAppToken: ${TOKEN}" https://rink.hockeyapp.net/api/2/apps/${APP_ID}/app_versions/upload

than there is no ${ID} found for some version.

Thanks!