Skip to content

Commit 958c2db

Browse files
committed
fix(ci): keep fixing ios
1 parent 5db9795 commit 958c2db

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

ios/PocketPal.xcodeproj/project.pbxproj

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -628,10 +628,7 @@
628628
"-DFOLLY_USE_LIBCPP=1",
629629
"-DFOLLY_CFG_NO_COROUTINES=1",
630630
);
631-
OTHER_LDFLAGS = (
632-
"$(inherited)",
633-
" ",
634-
);
631+
OTHER_LDFLAGS = "$(inherited) ";
635632
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
636633
SDKROOT = iphoneos;
637634
USE_HERMES = true;
@@ -667,6 +664,7 @@
667664
CLANG_WARN_SUSPICIOUS_MOVE = YES;
668665
CLANG_WARN_UNREACHABLE_CODE = YES;
669666
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
667+
CODE_SIGN_IDENTITY = "Apple Distribution";
670668
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
671669
COPY_PHASE_STRIP = YES;
672670
ENABLE_NS_ASSERTIONS = NO;
@@ -699,10 +697,7 @@
699697
"-DFOLLY_USE_LIBCPP=1",
700698
"-DFOLLY_CFG_NO_COROUTINES=1",
701699
);
702-
OTHER_LDFLAGS = (
703-
"$(inherited)",
704-
" ",
705-
);
700+
OTHER_LDFLAGS = "$(inherited) ";
706701
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
707702
SDKROOT = iphoneos;
708703
USE_HERMES = true;

ios/fastlane/Fastfile

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,21 @@ platform :ios do
1616
Base64.strict_encode64("x-access-token:#{ENV['MATCH_GITHUB_TOKEN']}")
1717
end
1818

19+
match(
20+
type: "development",
21+
readonly: true,
22+
api_key: api_key,
23+
git_branch: "master",
24+
git_basic_authorization: encoded_github_token
25+
)
26+
1927
match(
2028
type: "appstore",
2129
readonly: true,
2230
api_key: api_key,
2331
git_branch: "master",
2432
#password: ENV['MATCH_PASSWORD'], # will be picked up from environment variables
25-
git_basic_authorization: encoded_github_token
33+
git_basic_authorization: encoded_github_token
2634
)
2735

2836
build_ios_app(

0 commit comments

Comments
 (0)