Skip to content

Commit

Permalink
Remove App Store xcconfig
Browse files Browse the repository at this point in the history
This is no longer necessary, as we don't support ODRs anymore.
  • Loading branch information
saagarjha committed Dec 31, 2023
1 parent 8a02154 commit 900192c
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/upload-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ jobs:
path: |
iSH.ipa
iSH.app.dSYM.zip
iSH-appstore.app.dSYM.zip
- uses: actions/upload-artifact@v2
if: always()
Expand Down
1 change: 0 additions & 1 deletion app/AppStore.xcconfig

This file was deleted.

5 changes: 2 additions & 3 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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
1 change: 0 additions & 1 deletion fastlane/Snapfile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 900192c

Please sign in to comment.