Sha256: bfc31cea29610c7e1fdec43274884bb091d47a10047dad8692bb8952dfe8306e

Contents?: true

Size: 2 KB

Versions: 15

Compression:

Stored size: 2 KB

Contents

# Customize this file, documentation can be found here:
# https://docs.fastlane.tools/actions/
# All available actions: https://docs.fastlane.tools/actions
# can also be listed using the `fastlane actions` command

# Change the syntax highlighting to Ruby
# All lines starting with a # are ignored when running `fastlane`

# If you want to automatically update fastlane if a new version is available:
# update_fastlane

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

default_platform :ios

platform :ios do
  before_all do
    # ENV["SLACK_URL"] = "https://hooks.slack.com/services/..."
    cocoapods
    carthage
  end

  desc "Runs all the tests"
  lane :test do
    scan
  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
    # match(type: "appstore") # more information: https://codesigning.guide
    gym[[SCHEME]] # Build your app - more options available
    pilot

    # sh "your_script.sh"
    # You can also use other beta testing services here (run `fastlane actions`)
  end

  desc "Deploy a new version to the App Store"
  lane :release do
    # match(type: "appstore")
    snapshot
    gym[[SCHEME]] # Build your app - more options available
    deliver(force: true)
    # frameit
  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."
    # )
  end

  error do |lane, exception|
    # slack(
    #   message: exception.message,
    #   success: false
    # )
  end
end


# More information about multiple platforms in fastlane: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Platforms.md
# All available actions: https://docs.fastlane.tools/actions

# fastlane reports which actions are used. No personal data is recorded.
# Learn more at https://docs.fastlane.tools/#metrics

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
fastlane-2.65.0.beta.20171107010003 fastlane/lib/assets/DefaultFastfileTemplate
fastlane-2.64.0 fastlane/lib/assets/DefaultFastfileTemplate
fastlane-2.64.0.beta.20171106010003 fastlane/lib/assets/DefaultFastfileTemplate
fastlane-2.64.0.beta.20171105010003 fastlane/lib/assets/DefaultFastfileTemplate
fastlane-2.64.0.beta.20171104010004 fastlane/lib/assets/DefaultFastfileTemplate
fastlane-2.64.0.beta.20171103010004 fastlane/lib/assets/DefaultFastfileTemplate
fastlane-2.64.0.beta.20171102010003 fastlane/lib/assets/DefaultFastfileTemplate
fastlane-2.64.0.beta.20171101010004 fastlane/lib/assets/DefaultFastfileTemplate
fastlane-2.63.0 fastlane/lib/assets/DefaultFastfileTemplate
fastlane-2.63.0.beta.20171031010003 fastlane/lib/assets/DefaultFastfileTemplate
fastlane-2.63.0.beta.20171030010003 fastlane/lib/assets/DefaultFastfileTemplate
fastlane-2.63.0.beta.20171029010003 fastlane/lib/assets/DefaultFastfileTemplate
fastlane-2.63.0.beta.20171028010003 fastlane/lib/assets/DefaultFastfileTemplate
fastlane-2.63.0.beta.20171027010003 fastlane/lib/assets/DefaultFastfileTemplate
fastlane-2.63.0.beta.20171026010003 fastlane/lib/assets/DefaultFastfileTemplate