Skip to content

Commit bf748ec

Browse files
Merge pull request #687 from GetStream/fix-ios-deploy
Fix SampleApp iOS deploy
2 parents e362b9b + eceb03a commit bf748ec

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

.github/workflows/sample-distribution.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
APP_STORE_CONNECT_API_KEY_KEY_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY_ID }}
3232
APP_STORE_CONNECT_API_KEY_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_ISSUER_ID }}
3333
APP_STORE_CONNECT_API_KEY_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY }}
34+
GITHUB_TOKEN: ${{ secrets.VERSION_BUMP_TOKEN }}
3435
run: |
3536
cd examples/SampleApp/ios
3637
bundle exec fastlane deploy_to_testflight_qa

examples/SampleApp/ios/SampleApp-tvOS/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>24</string>
22+
<string>25</string>
2323
<key>LSRequiresIPhoneOS</key>
2424
<true />
2525
<key>NSAppTransportSecurity</key>

examples/SampleApp/ios/SampleApp-tvOSTests/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>24</string>
22+
<string>25</string>
2323
</dict>
2424
</plist>

examples/SampleApp/ios/SampleApp.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@
672672
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
673673
CLANG_ENABLE_MODULES = YES;
674674
CODE_SIGN_IDENTITY = "iPhone Distribution";
675-
CURRENT_PROJECT_VERSION = 24;
675+
CURRENT_PROJECT_VERSION = 25;
676676
DEVELOPMENT_TEAM = EHV7XZLAHA;
677677
ENABLE_BITCODE = NO;
678678
INFOPLIST_FILE = SampleApp/Info.plist;
@@ -699,7 +699,7 @@
699699
CLANG_ENABLE_MODULES = YES;
700700
CODE_SIGN_IDENTITY = "iPhone Distribution";
701701
CODE_SIGN_STYLE = Manual;
702-
CURRENT_PROJECT_VERSION = 24;
702+
CURRENT_PROJECT_VERSION = 25;
703703
DEVELOPMENT_TEAM = EHV7XZLAHA;
704704
INFOPLIST_FILE = SampleApp/Info.plist;
705705
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";

examples/SampleApp/ios/SampleApp/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>24</string>
24+
<string>25</string>
2525
<key>LSRequiresIPhoneOS</key>
2626
<true />
2727
<key>NSAppTransportSecurity</key>

examples/SampleApp/ios/SampleAppTests/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>24</string>
22+
<string>25</string>
2323
</dict>
2424
</plist>

0 commit comments

Comments
 (0)