Skip to content

Instantly share code, notes, and snippets.

@codeOfRobin
Created January 12, 2017 13:46
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 codeOfRobin/3d01d2ee7feabc35b3a65bd6b319f84c to your computer and use it in GitHub Desktop.
Save codeOfRobin/3d01d2ee7feabc35b3a65bd6b319f84c to your computer and use it in GitHub Desktop.
lane :travis do
increment_build_number
cocoapods
carthage(command: "update",
use_ssh: "true",
no_skip_current: false,
use_binaries: false,
platform: "iOS")
create_keychain(
name: "MATCH_KEYCHAIN_NAME",
password: "MATCH_KEYCHAIN_PASSWORD",
default_keychain: true,
unlock: true,
timeout: 3600,
add_to_search_list: true)
match(type: "appstore", app_identifier: "your.app.identifier", readonly: true, keychain_name: "MATCH_KEYCHAIN_NAME", keychain_password: "MATCH_KEYCHAIN_PASSWORD")
gym(scheme: "YourApp",
workspace: "YourApp.xcworkspace",
include_bitcode: true)
deliver(force:true)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment