From 5d1d695911b798d26fc812357ee14d325bdd652e Mon Sep 17 00:00:00 2001 From: Salvatore Giordano Date: Tue, 28 Jul 2020 16:52:40 +0200 Subject: [PATCH] add setup_ci --- example/ios/fastlane/Fastfile | 6 ++++++ example/pubspec.yaml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/example/ios/fastlane/Fastfile b/example/ios/fastlane/Fastfile index f2eb8c56..575e5dd7 100644 --- a/example/ios/fastlane/Fastfile +++ b/example/ios/fastlane/Fastfile @@ -1,6 +1,12 @@ fastlane_version "2.68.0" default_platform :ios +before_all do + if is_ci + setup_ci() + end +end + desc "Installs all Certs and Profiles necessary for development and ad-hoc" lane :match_me do match( diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 580de824..fb730eff 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -1,7 +1,7 @@ name: example description: A new Flutter project. -version: 1.0.6+8 +version: 1.0.7+9 environment: sdk: ">=2.2.2 <3.0.0"