Created
January 17, 2017 18:07
-
-
Save madhikarma/3cda4b641a83071a7d008021f5bdb97e to your computer and use it in GitHub Desktop.
Hockey app upload script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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