From 266e6932a8a018e8c08625fee0b59862a45208ea Mon Sep 17 00:00:00 2001 From: Kai Kriegel Date: Tue, 28 Sep 2021 01:05:01 +0200 Subject: [PATCH] update fastlane on pipeline run --- .gitlab-ci.yml | 1 + fastlane/Fastfile | 23 ----------------------- 2 files changed, 1 insertion(+), 23 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 95dd58e..2bcf48e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -206,6 +206,7 @@ deploy_iOS: - 'export PATH="/usr/local/opt/ruby/bin:$PATH"' script: - 'bundle install' + - 'bundle update fastlane' - 'bundle exec fastlane pilot upload --api_key_path app-store-credentials.json --ipa Borepin/Borepin.iOS/bin/iPhone/Debug/Borepin.iOS.ipa' after_script: - 'rm app-store-credentials.json' diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 0f39ea6..e69de29 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -1,23 +0,0 @@ -# This file contains the fastlane.tools configuration -# You can find the documentation at https://docs.fastlane.tools -# -# For a list of all available actions, check out -# -# https://docs.fastlane.tools/actions -# -# For a list of all available plugins, check out -# -# https://docs.fastlane.tools/plugins/available-plugins -# - -# Uncomment the line if you want fastlane to automatically update itself -# update_fastlane - -default_platform(:ios) - -platform :ios do - desc "Description of what the lane does" - lane :custom_lane do - # add actions here: https://docs.fastlane.tools/actions - end -end