Skip to content

Commit

Permalink
Fix provisioning and team targets
Browse files Browse the repository at this point in the history
  • Loading branch information
yukiarrr committed Sep 28, 2020
1 parent b38730c commit 3690348
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,13 @@ platform :ios do
update_project_provisioning(
xcodeproj: ENV["PROJECT_PATH"],
profile: "ios-build.mobileprovision",
code_signing_identity: ENV["CODE_SIGNING_IDENTITY"]
code_signing_identity: ENV["CODE_SIGNING_IDENTITY"],
target_filter: disable_targets&.map{|target| "^#{Regexp.escape(target)}$" }.join("|")
)
update_project_team(
path: ENV["PROJECT_PATH"],
teamid: ENV["TEAM_ID"]
teamid: ENV["TEAM_ID"],
targets: disable_targets
)
if ENV["WORKSPACE_PATH"] != ""
build_app(
Expand Down

0 comments on commit 3690348

Please sign in to comment.