1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 19:27:24 +08:00

Clean up config further

This commit is contained in:
Dean Herbert 2019-03-01 17:37:41 +09:00
parent 70d1c6fba4
commit 0df49e6df3

View File

@ -3,12 +3,12 @@ update_fastlane
default_platform(:ios)
platform :ios do
lane :clean_dryrun do
lane :testflight_prune_dry do
clean_testflight_testers(days_of_inactivity:45, dry_run: true)
end
# Specify a custom number for what's "inactive"
lane :clean do
lane :testflight_prune do
clean_testflight_testers(days_of_inactivity: 45) # 120 days, so about 4 months
end
@ -57,11 +57,9 @@ platform :ios do
desc 'Install provisioning profiles using match'
lane :provision do |options|
if Helper.is_ci?
# CI should not do stuff in ADP
options[:readonly] = true
end
# update provisioning profiles
match(options)
end
end