Skip to content

Commit

Permalink
Merge pull request #23 from yukiarrr/fix-provisioning-and-team-targets
Browse files Browse the repository at this point in the history
Fix provisioning and team targets
  • Loading branch information
yukiarrr authored Sep 28, 2020
2 parents b38730c + 3690348 commit ba74813
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 ba74813

Please sign in to comment.