Sha256: f00a30927118673743c26158dd30bc37cf4c81527f26b97f807e2d585c848149

Contents?: true

Size: 1.06 KB

Versions: 12

Compression:

Stored size: 1.06 KB

Contents

# Customise this file, documentation can be found here:
# https://github.com/krausefx/fastlane#customise-the-fastfile

# Change the syntax highlighting to Ruby

# All lines starting with a # are ignored when running `fastlane`

before_all do
  # ENV["SLACK_URL"] = "https://hooks.slack.com/services/..."

  # sh "./customShellScript.sh"

  cocoapods

  # increment_build_number

  ipa({
    workspace: "MyApp.xcworkspace",
    configuration: "Debug",
    scheme: "MyApp",
  })

  xctool
end

lane :test do
  snapshot
end

lane :beta do
  snapshot
  sigh
  deliver :skip_deploy, :beta
  # sh "your_script.sh"
end

lane :deploy do
  snapshot
  sigh
  deliver :skip_deploy, :force
  # frameit
end

lane :inhouse do
  # insert your code here
end

# You can define as many lanes as you want

after_all do |lane|
  # This block is called, only if the executed lane was successful
  # slack({
  #   message: "Successfully deployed new App Update for [App](http://link.com).",
  #   success: true,
  #   channel: 'development'
  # })
end


error do |lane, exception|
  # Something bad happened
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
fastlane-0.2.1 lib/assets/FastfileTemplate
fastlane-0.2.0 lib/assets/FastfileTemplate
fastlane-0.1.19 lib/assets/FastfileTemplate
fastlane-0.1.18 lib/assets/FastfileTemplate
fastlane-0.1.17 lib/assets/FastfileTemplate
fastlane-0.1.16 lib/assets/FastfileTemplate
fastlane-0.1.15 lib/assets/FastfileTemplate
fastlane-0.1.14 lib/assets/FastfileTemplate
fastlane-0.1.13 lib/assets/FastfileTemplate
fastlane-0.1.12 lib/assets/FastfileTemplate
fastlane-0.1.10 lib/assets/FastfileTemplate
fastlane-0.1.9 lib/assets/FastfileTemplate