Sha256: a8f3d035a89996a00e504672a3967ff1a60b68b8c376f2deffe7784934ae7cfc

Contents?: true

Size: 1.62 KB

Versions: 1

Compression:

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

# By default, fastlane will send which actions are used
# No personal data is shared, more information on https://github.com/fastlane/enhancer
# Uncomment the following line to opt out
# opt_out_usage

# 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

desc "Runs all the tests"
lane :test do
  snapshot
end

desc "Submit a new Beta Build to Apple TestFlight"
desc "This will also make sure the profile is up to date"
lane :beta do
  snapshot
  sigh
  deliver :skip_deploy, :beta
  # sh "your_script.sh"
  # You can use other beta testing services here
end

desc "Deploy a new version to the App Store"
desc "** Full Markdown** Support: `code`"
lane :deploy do
  snapshot
  sigh
  deliver :skip_deploy, :force
  # frameit
end

desc "In House Beta Enterprise Distribution"
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

1 entries across 1 versions & 1 rubygems

Version Path
fastlane-0.9.0 lib/assets/FastfileTemplate