Skip to content

Instantly share code, notes, and snippets.

@espresso3389
Last active December 25, 2020 09:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save espresso3389/c7a4c74dd2047c02e100d76fa9f7da09 to your computer and use it in GitHub Desktop.
Save espresso3389/c7a4c74dd2047c02e100d76fa9f7da09 to your computer and use it in GitHub Desktop.
Installing provisioning profile
#/bin/sh
#
# Installing provisioning profile
# Set $PROVISIONING_PROFILE_BASE64 and $CERT_SERIAL_NUMBER before invoking the script.
PROVPROF_TMP=$GITHUB_WORKSPACE/tmp.mobileprovision
echo "$PROVISIONING_PROFILE_BASE64" | openssl base64 -d -A -out $PROVPROF_TMP
UUID=`grep UUID -A1 -a $PROVPROF_TMP | grep -io "[-A-Z0-9]\{36\}"`
echo "Provisioning profile UUID: $UUID"
SERIAL_NUMBER=$(/usr/libexec/PlistBuddy -c "Print DeveloperCertificates:0" /dev/stdin <<< $(security cms -D -i $PROVPROF_TMP) | openssl x509 -inform der -text -noout | grep "Serial Number" | awk '{ print $3 }')
# Checking provisioning profile's developer
if [ "$CERT_SERIAL_NUMBER" = "$SERIAL_NUMBER" ]; then
echo "Provisioning profile's developer match to certificate's one: $SERIAL_NUMBER"
else
echo "Provisioning profile's developer not match to certificate's one: $SERIAL_NUMBER <-> $CERT_SERIAL_NUMBER"
exit 1
fi
mkdir -p ~/Library/MobileDevice/Provisioning\ Profiles
mv $PROVPROF_TMP ~/Library/MobileDevice/Provisioning\ Profiles/$UUID.mobileprovision
@espresso3389
Copy link
Author

espresso3389 commented Dec 1, 2020

Install our provisioning certificates on the GitHub Runner machine

Set $PROVISIONING_PROFILE_BASE64 and $CERT_SERIAL_NUMBER before invoking the script.
$CERT_SERIAL_NUMBER is normally set by keychain_init.sh.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment