Sha256: 4dac6cd4316df87062e343a61722a834af0d66e249e171c6ee2c57b4247362ab

Contents?: true

Size: 878 Bytes

Versions: 18

Compression:

Stored size: 878 Bytes

Contents

fastlane_version "1.90.0"

default_platform :mac

platform :mac do
  before_all do
    ENV["SLACK_URL"] = "https://hooks.slack.com/services/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"
  end

  desc "Runs all the tests"
  lane :test do
    sh "rspec .."
  end

  desc "Build a RubyGem"
  lane :build do
    sh "gem build ../fastlane-plugin-apprepo.gemspec"  
  end

  desc "Deploy a new version to the RubyGems.org"
  lane :deploy do
    sh "gem push ../fastlane-plugin-apprepo-0.1.0.gem"

    slack(
      message: "Successfully deployed new Fastlane Plugin Update."
    )
  end

  after_all do |lane|
    # This block is called, only if the executed lane was successful
    #slack(
    #  message: "Successfully deployed new Fastlane Plugin Update."
    #)
  end

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

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
fastlane-plugin-apprepo-0.5.5 fastlane/Fastfile
fastlane-plugin-apprepo-0.5.4 fastlane/Fastfile
fastlane-plugin-apprepo-0.5.3 fastlane/Fastfile
fastlane-plugin-apprepo-0.5.2 fastlane/Fastfile
fastlane-plugin-apprepo-0.5.1 fastlane/Fastfile
fastlane-plugin-apprepo-0.5.0 fastlane/Fastfile
fastlane-plugin-apprepo-0.4.3 fastlane/Fastfile
fastlane-plugin-apprepo-0.4.2 fastlane/Fastfile
fastlane-plugin-apprepo-0.4.1 fastlane/Fastfile
fastlane-plugin-apprepo-0.4.0 fastlane/Fastfile
fastlane-plugin-apprepo-0.3.9 fastlane/Fastfile
fastlane-plugin-apprepo-0.3.8 fastlane/Fastfile
fastlane-plugin-apprepo-0.3.7 fastlane/Fastfile
fastlane-plugin-apprepo-0.3.6 fastlane/Fastfile
fastlane-plugin-apprepo-0.3.3 fastlane/Fastfile
fastlane-plugin-apprepo-0.3.1 fastlane/Fastfile
fastlane-plugin-apprepo-0.3.0 fastlane/Fastfile
fastlane-plugin-apprepo-0.2.0 fastlane/Fastfile