Created
July 25, 2018 15:14
-
-
Save Tayphoon/bf92e2442e7a1e5f1619101bc0e39ba3 to your computer and use it in GitHub Desktop.
This file contains 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
openssl pkcs12 -nocerts -nodes -out key.pem -in certificate.p12 | |
openssl aes-256-cbc -k #{REPO_PASSWORD} -in key.pem -out ${TEAM_ID}.p12 -a | |
openssl aes-256-cbc -k #{REPO_PASSWORD} -in certificate.cer -out ${TEAM_ID}.cer -a | |
openssl aes-256-cbc -k #{REPO_PASSWORD} -in Distribution.mobileprovision -out AppStore_${BUNDLE_ID}.mobileprovision -a | |
openssl aes-256-cbc -k #{REPO_PASSWORD} -in Development.mobileprovision -out Development_${BUNDLE_ID}.mobileprovision -a | |
openssl aes-256-cbc -k #{REPO_PASSWORD} -in ADHOC.mobileprovision -out AdHoc_${BUNDLE_ID}.mobileprovision -a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment