Skip to content
4 changes: 2 additions & 2 deletions .github/workflows/testflight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ on:
jobs:
upload_to_testflight:
name: Build and Upload iOS-Swift to Testflight
runs-on: macos-14
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- run: ./scripts/ci-select-xcode.sh 15.2
- run: ./scripts/ci-select-xcode.sh 16.2
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
Expand Down
5 changes: 4 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,10 @@ platform :ios do
clone_branch_directly: true
)

build_app(
# We must use build_ios_app because otherwise the build will succeed but it will not create the .ipa file.
# The log output will print a warning: "No output path received from gym"
# See: https://github.com/fastlane/fastlane/issues/22276#issuecomment-2491517911
build_ios_app(
workspace: "Sentry.xcworkspace",
scheme: "iOS-Swift",
include_bitcode: false,
Expand Down
Loading