Skip to content

Instantly share code, notes, and snippets.

View FlorianPfisterer's full-sized avatar

Florian Pfisterer FlorianPfisterer

View GitHub Profile
@jorgemasta
jorgemasta / appcenter-post-build.sh
Created June 12, 2020 12:21
Automatically upload react-native source maps to Bugsnag from Appcenter
#!/usr/bin/env bash
# Prevent send to bugsnag in not selected branches
if [ "$APPCENTER_BRANCH" != "production" ] && [ "$APPCENTER_BRANCH" != "qa" ] && [ "$APPCENTER_BRANCH" != "staging" ]
then
echo "This branch is not in the selected ones:" $APPCENTER_BRANCH
exit
fi
# Set platform
echo "Setting Platform..."