Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/testflight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,14 @@ jobs:
- name: Build for TestFlight
run: bundle exec fastlane testflight_build_only

- name: Upload TestFlight build log
if: always()
uses: actions/upload-artifact@v6
with:
name: testflight-build-log
path: ~/Library/Logs/gym/*.log
if-no-files-found: ignore

- name: Skip TestFlight Upload
if: (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'qa-local')) || (github.event_name == 'workflow_dispatch' && inputs.upload_to_app_store_connect != 'true')
run: echo "Skipping TestFlight upload"
Expand Down
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ platform :ios do
export_method: "app-store",
output_directory: TESTFLIGHT_BUILD_OUTPUT_DIRECTORY,
output_name: "#{APP_PRODUCT_NAME}.ipa",
xcargs: "-skipPackagePluginValidation"
xcargs: "-skipPackagePluginValidation -skipMacroValidation"
)

next api_key
Expand Down