Add scripts to update provisioning profiles
This commit is contained in:
parent
4d3629e80f
commit
faa63523e8
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
bundle exec fastlane --env secret-codesign,secret-deploy update_provisioning type:appstore readonly:false
|
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
bundle exec fastlane --env secret-codesign,secret-deploy update_provisioning type:development readonly:false
|
|
@ -61,4 +61,9 @@ platform :ios do
|
|||
skip_metadata: true
|
||||
)
|
||||
end
|
||||
|
||||
desc "Update provisioning profiles"
|
||||
lane :update_provisioning do |options|
|
||||
match(options)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue