Sha256: 29fdf98a8ec3063207291242516e330b704ec2efb83f5e71bf0b3f3e2d1f7492

Contents?: true

Size: 1.11 KB

Versions: 3

Compression:

Stored size: 1.11 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`

# This is the minimum version number required. 
# Update this, if you use features of a newer version
fastlane_version "[[FASTLANE_VERSION]]" 

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

  # sh "./customShellScript.sh"

  cocoapods

  # increment_build_number

  ipa

  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

3 entries across 3 versions & 1 rubygems

Version Path
fastlane-0.4.2 lib/assets/FastfileTemplate
fastlane-0.4.1 lib/assets/FastfileTemplate
fastlane-0.4.0 lib/assets/FastfileTemplate