From faa63523e8426cb1d1fc516cda919eb22648184d Mon Sep 17 00:00:00 2001 From: Davide De Rosa Date: Tue, 5 Mar 2019 21:43:22 +0100 Subject: [PATCH] Add scripts to update provisioning profiles --- ci/beta-certs.sh | 2 ++ ci/dev-certs.sh | 2 ++ fastlane/Fastfile | 5 +++++ 3 files changed, 9 insertions(+) create mode 100755 ci/beta-certs.sh create mode 100755 ci/dev-certs.sh diff --git a/ci/beta-certs.sh b/ci/beta-certs.sh new file mode 100755 index 00000000..8a91575a --- /dev/null +++ b/ci/beta-certs.sh @@ -0,0 +1,2 @@ +#!/bin/sh +bundle exec fastlane --env secret-codesign,secret-deploy update_provisioning type:appstore readonly:false diff --git a/ci/dev-certs.sh b/ci/dev-certs.sh new file mode 100755 index 00000000..1bdd83bb --- /dev/null +++ b/ci/dev-certs.sh @@ -0,0 +1,2 @@ +#!/bin/sh +bundle exec fastlane --env secret-codesign,secret-deploy update_provisioning type:development readonly:false diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 7832be70..38604dbd 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -61,4 +61,9 @@ platform :ios do skip_metadata: true ) end + + desc "Update provisioning profiles" + lane :update_provisioning do |options| + match(options) + end end