Skip to content

Instantly share code, notes, and snippets.

@madhikarma
Created January 17, 2017 18:07
Show Gist options
  • Save madhikarma/3cda4b641a83071a7d008021f5bdb97e to your computer and use it in GitHub Desktop.
Save madhikarma/3cda4b641a83071a7d008021f5bdb97e to your computer and use it in GitHub Desktop.
Hockey app upload script
# dSYMs
# part 1
ZIPPED_DSYM="${BUILD_FILE_NAME}.dSYM.zip"
cd "${BUILD_FILE_NAME}.xcarchive/"
zip -r "../$ZIPPED_DSYM" "dSYMs/"
cd ..
# Deploy
curl -F "status=2" -F "notify=1" -F "notes=${RELEASE_NOTES}" -F "notes_type=0" -F "ipa=@${BUILD_FILE_NAME}.ipa" -F "dsym=@${ZIPPED_DSYM}" -H "X-HockeyAppToken: @${API_TOKEN}" https://rink.hockeyapp.net/api/2/apps/upload
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment