Skip to content

Commit

Permalink
ci: codesigning identity
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasgangso committed Apr 5, 2024
1 parent fc20b48 commit b87ced1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 4 additions & 2 deletions BCC Media tvOS/BCC Media tvOS.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -536,6 +536,7 @@
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "Apple Development";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 116;
DEBUG_INFORMATION_FORMAT = dwarf;
Expand Down Expand Up @@ -601,7 +602,7 @@
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "Apple Distribution";
CODE_SIGN_IDENTITY = "Apple Development";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 116;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
Expand Down Expand Up @@ -634,6 +635,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = "BCC Media tvOS.entitlements";
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 117;
DEVELOPMENT_TEAM = 6734NUF6AV;
Expand Down Expand Up @@ -663,7 +665,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = "BCC Media tvOS.entitlements";
CODE_SIGN_IDENTITY = "Apple Distribution";
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 117;
DEVELOPMENT_TEAM = 6734NUF6AV;
Expand Down
5 changes: 4 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ platform :ios do
sh("cd .. && ./scripts/build.sh pre")
begin
build_app(
scheme: "BCC Media tvOS", cloned_source_packages_path: "./tmp/build", skip_profile_detection: true,
scheme: "BCC Media tvOS",
cloned_source_packages_path: "./tmp/build",
skip_profile_detection: true,
code_signing_identity: "Apple Distribution",
)
ensure
sh("cd .. && ./scripts/build.sh post")
Expand Down

0 comments on commit b87ced1

Please sign in to comment.