diff --git a/.github/workflows/upload-build.yml b/.github/workflows/upload-build.yml index 2e1790d810..dffbcc5dcf 100644 --- a/.github/workflows/upload-build.yml +++ b/.github/workflows/upload-build.yml @@ -44,7 +44,6 @@ jobs: path: | iSH.ipa iSH.app.dSYM.zip - iSH-appstore.app.dSYM.zip - uses: actions/upload-artifact@v2 if: always() diff --git a/app/AppStore.xcconfig b/app/AppStore.xcconfig deleted file mode 100644 index 5f60adb2a0..0000000000 --- a/app/AppStore.xcconfig +++ /dev/null @@ -1 +0,0 @@ -ENABLE_APK_ODRS = YES diff --git a/fastlane/Fastfile b/fastlane/Fastfile index affef5ef0d..f62070b21f 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -59,10 +59,9 @@ lane :upload_build do add_git_tag(tag: tag) build - build(config: "AppStore", output: "iSH-appstore") puts testflight_changelog upload_to_testflight( - ipa: "iSH-appstore.ipa", + ipa: "iSH.ipa", changelog: testflight_changelog, wait_processing_interval: 300, # the processing is expected to take a total of 5 hours, so don't logspam too much distribute_external: true, @@ -79,7 +78,7 @@ lane :upload_build do name: "Build #{build_number}", description: changelog, is_prerelease: true, - upload_assets: ["iSH.ipa", "iSH.app.dSYM.zip", "iSH-appstore.app.dSYM.zip"], + upload_assets: ["iSH.ipa", "iSH.app.dSYM.zip"], api_token: ENV["GH_TOKEN"], ) end diff --git a/fastlane/Snapfile b/fastlane/Snapfile index 7c06e70b89..0892f775bf 100644 --- a/fastlane/Snapfile +++ b/fastlane/Snapfile @@ -22,7 +22,6 @@ languages([ dark_mode(true) override_status_bar(true) -xcconfig("app/AppStore.xcconfig") xcargs("ARCHS=arm64") reinstall_app(true) clear_previous_screenshots(true)