2019-10-09 00:18:13 +02:00
|
|
|
#!/bin/sh
|
|
|
|
set -v
|
|
|
|
set -e
|
|
|
|
|
2019-10-12 14:48:34 +02:00
|
|
|
# Unencrypt our provisioning profiles, certificates, and private key
|
2020-03-23 02:30:34 +01:00
|
|
|
#
|
|
|
|
# Encrypt the profiles, certs, and key using the following example command where
|
|
|
|
# "secret-key" is the key stored in the Github Secrets variable ENCRYPTION_SECRET
|
|
|
|
#
|
|
|
|
# openssl aes-256-cbc -k "secret-key" -in buildscripts/profile/NetNewsWire.provisionprofile -out buildscripts/profile/NetNewsWire.provisionprofile.enc -a
|
|
|
|
#
|
2019-10-09 23:36:06 +02:00
|
|
|
openssl aes-256-cbc -k "$ENCRYPTION_SECRET" -in buildscripts/profile/NetNewsWire.provisionprofile.enc -d -a -out buildscripts/profile/NetNewsWire.provisionprofile
|
2019-10-12 14:48:34 +02:00
|
|
|
openssl aes-256-cbc -k "$ENCRYPTION_SECRET" -in buildscripts/profile/NetNewsWireiOS.mobileprovision.enc -d -a -out buildscripts/profile/NetNewsWireiOS.mobileprovision
|
2019-10-11 03:02:50 +02:00
|
|
|
openssl aes-256-cbc -k "$ENCRYPTION_SECRET" -in buildscripts/certs/mac-dist.cer.enc -d -a -out buildscripts/certs/mac-dist.cer
|
2019-10-12 14:48:34 +02:00
|
|
|
openssl aes-256-cbc -k "$ENCRYPTION_SECRET" -in buildscripts/certs/ios-dist.cer.enc -d -a -out buildscripts/certs/ios-dist.cer
|
2019-10-11 03:02:50 +02:00
|
|
|
openssl aes-256-cbc -k "$ENCRYPTION_SECRET" -in buildscripts/certs/mac-dist.p12.enc -d -a -out buildscripts/certs/mac-dist.p12
|
2019-10-09 00:18:13 +02:00
|
|
|
|
2019-10-09 23:36:06 +02:00
|
|
|
# Put the certificates and private key in the Keychain, set ACL permissions, and make default
|
2019-10-09 00:18:13 +02:00
|
|
|
security create-keychain -p github-actions github-build.keychain
|
|
|
|
security import buildscripts/certs/apple.cer -k ~/Library/Keychains/github-build.keychain -A
|
2019-10-11 03:02:50 +02:00
|
|
|
security import buildscripts/certs/mac-dist.cer -k ~/Library/Keychains/github-build.keychain -A
|
2019-10-12 14:48:34 +02:00
|
|
|
security import buildscripts/certs/ios-dist.cer -k ~/Library/Keychains/github-build.keychain -A
|
2019-10-11 03:02:50 +02:00
|
|
|
security import buildscripts/certs/mac-dist.p12 -k ~/Library/Keychains/github-build.keychain -P $KEY_SECRET -A
|
2019-10-09 00:18:13 +02:00
|
|
|
security set-key-partition-list -S apple-tool:,apple: -s -k github-actions github-build.keychain
|
|
|
|
security default-keychain -s github-build.keychain
|
|
|
|
|
2019-10-09 23:36:06 +02:00
|
|
|
# Copy the provisioning profile
|
|
|
|
mkdir -p ~/Library/MobileDevice/Provisioning\ Profiles
|
|
|
|
cp buildscripts/profile/NetNewsWire.provisionprofile ~/Library/MobileDevice/Provisioning\ Profiles/
|
2019-10-12 14:48:34 +02:00
|
|
|
cp buildscripts/profile/NetNewsWireiOS.mobileprovision ~/Library/MobileDevice/Provisioning\ Profiles/
|
2019-10-09 00:18:13 +02:00
|
|
|
|
2019-10-09 23:36:06 +02:00
|
|
|
# Delete the decrypted files
|
|
|
|
rm -f buildscripts/profile/NetNewsWire.provisionprofile
|
2019-10-12 14:48:34 +02:00
|
|
|
rm -f buildscripts/profile/NetNewsWireiOS.mobileprovision
|
2019-10-11 03:02:50 +02:00
|
|
|
rm -f buildscripts/certs/mac-dist.cer
|
2019-10-12 14:48:34 +02:00
|
|
|
rm -f buildscripts/certs/ios-dist.cer
|
2019-10-11 03:02:50 +02:00
|
|
|
rm -f buildscripts/certs/mac-dist.p12
|
2019-10-09 00:18:13 +02:00
|
|
|
|
2019-10-09 23:36:06 +02:00
|
|
|
# Do the build
|
2020-07-29 18:42:52 +02:00
|
|
|
xcodebuild -scheme $SCHEME build -destination "$DESTINATION" -showBuildTimingSummary -allowProvisioningUpdates
|
2019-10-09 23:36:06 +02:00
|
|
|
|
2019-10-12 15:16:02 +02:00
|
|
|
# Delete the keychain and the provisioning profile
|
2019-10-09 23:36:06 +02:00
|
|
|
security delete-keychain github-build.keychain
|
2019-10-12 14:48:34 +02:00
|
|
|
rm -f ~/Library/MobileDevice/Provisioning\ Profiles/NetNewsWire.provisionprofile
|
2020-07-29 18:42:52 +02:00
|
|
|
rm -f ~/Library/MobileDevice/Provisioning\ Profiles/NetNewsWireiOS.mobileprovision
|