diff --git a/apps/tablet/capacitor.config.json b/apps/tablet/capacitor.config.json deleted file mode 100644 index a6d334ad0..000000000 --- a/apps/tablet/capacitor.config.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "appId": "com.tonkeeper.pro.app", - "appName": "Tonkeeper Pro", - "webDir": "dist", - "plugins": { - "SplashScreen": { - "launchShowDuration": 0 - } - } -} \ No newline at end of file diff --git a/apps/tablet/fastlane/Fastfile b/apps/tablet/fastlane/Fastfile index e6318a4fd..fcdf2b0ae 100644 --- a/apps/tablet/fastlane/Fastfile +++ b/apps/tablet/fastlane/Fastfile @@ -8,6 +8,7 @@ platform :ios do load_asc_api_key bump_build_number build_app_with_signing(keychain_info) + create_changelog submit_to_testflight ensure cleanup_keychain(keychain_info) @@ -128,7 +129,13 @@ platform :ios do export_xcargs: "-allowProvisioningUpdates", ) end - + + private_lane :create_changelog do + release_notes = "./metadata/default/release_notes.txt" + changes = changelog_from_git_commits(commits_count: 10, merge_commit_filtering: "exclude_merges") + File.write(release_notes, changes) + end + private_lane :submit_to_testflight do api_key = lane_context[SharedValues::APP_STORE_CONNECT_API_KEY]