Skip to content

Commit 56eed08

Browse files
Merge branch 'develop' into add/location-attachments
2 parents b97e988 + ad8e9fc commit 56eed08

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

.github/workflows/sdk-performance-metrics.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ jobs:
2828
with:
2929
ssh-private-key: ${{ secrets.BOT_SSH_PRIVATE_KEY }}
3030

31+
- uses: actions/setup-python@v5
32+
with:
33+
python-version: 3.12 # gsutil requires Python version 3.8-3.12
34+
3135
- uses: actions/[email protected]
3236
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
3337
with:

fastlane/Fastfile

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -282,22 +282,14 @@ lane :uikit_testflight_build do |options|
282282
match_me
283283

284284
sdk_version = get_sdk_version_from_environment
285-
app_version =
286-
if is_manual_upload
287-
major, minor, _patch = sdk_version.split('.').map(&:to_i)
288-
minor += 1
289-
"#{major}.#{minor}.0"
290-
else
291-
sdk_version
292-
end
293-
UI.important("[TestFlight] Uploading DemoApp version: #{app_version}")
285+
UI.important("[TestFlight] Uploading DemoApp version: #{sdk_version}")
294286

295287
testflight_build(
296288
api_key: appstore_api_key,
297289
xcode_project: xcode_project,
298290
sdk_target: 'StreamChat',
299291
app_target: 'DemoApp',
300-
app_version: app_version,
292+
app_version: sdk_version,
301293
app_identifier: 'io.getstream.iOS.ChatDemoApp',
302294
configuration: configuration,
303295
extensions: ['DemoShare'],

0 commit comments

Comments
 (0)