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