diff --git a/.gitignore b/.gitignore index 07980ee..a889367 100644 --- a/.gitignore +++ b/.gitignore @@ -33,6 +33,7 @@ Pods/ Carthage/Build PrivatConstants.swift PrivateConstants.swift +secrets.tar BreakOutBeta.mobileprovision Screencasts *.pages diff --git a/.travis.yml b/.travis.yml index c02ea96..c3e35aa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,7 +16,8 @@ notifications: before_install: - pod repo update > /dev/null - - openssl aes-256-cbc -K $encrypted_7cb16b9c01f6_key -iv $encrypted_7cb16b9c01f6_iv -in PrivateConstants.swift.enc -out BreakOut/PrivateConstants.swift -d + - openssl aes-256-cbc -K $encrypted_7cb16b9c01f6_key -iv $encrypted_7cb16b9c01f6_iv -in secrets.tar.enc -out secrets.tar -d + - tar xvf secrets.tar script: - xcodebuild test -workspace BreakOut.xcworkspace -scheme BreakOutTests -destination 'platform=iOS Simulator,id=22FA2149-1241-469C-BF6D-462D3837DB72,OS=10.2' CODE_SIGNING_REQUIRED=NO | xcpretty -s && exit ${PIPESTATUS[0]} diff --git a/BreakOutBeta.mobileprovision.enc b/BreakOutBeta.mobileprovision.enc deleted file mode 100644 index 00c578a..0000000 Binary files a/BreakOutBeta.mobileprovision.enc and /dev/null differ diff --git a/PrivateConstants.swift.enc b/PrivateConstants.swift.enc deleted file mode 100644 index b1df3ac..0000000 Binary files a/PrivateConstants.swift.enc and /dev/null differ diff --git a/deploy.sh b/deploy.sh index 405eb7f..2ea271a 100644 --- a/deploy.sh +++ b/deploy.sh @@ -6,10 +6,6 @@ if [ ! -z "$TRAVIS_TAG" ]; then echo "This will be released to Fabric" - # Decode Provisioning Profile - - openssl aes-256-cbc -K $encrypted_7cb16b9c01f6_key -iv $encrypted_7cb16b9c01f6_iv -in BreakOutBeta.mobileprovision.enc -out BreakOutBeta.mobileprovision -d - # Add provisioning profile to xcode uuid=`grep UUID -A1 -a BreakOutBeta.mobileprovision | grep -io "[-A-Z0-9]\{36\}"` diff --git a/secrets.tar.enc b/secrets.tar.enc new file mode 100644 index 0000000..fc939d8 Binary files /dev/null and b/secrets.tar.enc differ