Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View natanrolnik's full-sized avatar

Natan Rolnik natanrolnik

View GitHub Profile
machine:
xcode:
version: "7.0"
dependencies:
pre:
- brew install mogenerator --HEAD #if you are using mogenerator, you need this step. Otherwise, ignore it
deployment:
staging:
desc "Submit a new Beta Build to Fabric without notifications"
lane :fabric_silent do
import_certificates
sigh(adhoc: true)
ENV["PROFILE_UDID"] = lane_context[SharedValues::SIGH_UDID] # use the UDID of the newly created provisioning profile
gym(scheme: "MyApp AdHoc", sdk: "iphoneos9.0", use_legacy_build_api: true)
crashlytics(notifications: false)
end
fastlane_version "1.33.0"
default_platform :ios
platform :ios do
before_all do
cocoapods
ENV['KEYCHAIN_NAME'] = "TempKeychain.keychain"
end
fastlane_version "1.33.0"
default_platform :ios
platform :ios do
before_all do
cocoapods
ENV['KEYCHAIN_NAME'] = "TempKeychain.keychain"
end