From 6705a86c51b2b71f655a558ffbf5e622a9e9acf8 Mon Sep 17 00:00:00 2001 From: Oleksii Bulenok Date: Thu, 25 Jun 2026 13:20:42 +0200 Subject: [PATCH] temp changes for testflight testing --- .github/workflows/build-submit-ios.yml | 3 +++ app.config.js | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-submit-ios.yml b/.github/workflows/build-submit-ios.yml index 53f1097251..af536ef5a3 100644 --- a/.github/workflows/build-submit-ios.yml +++ b/.github/workflows/build-submit-ios.yml @@ -247,6 +247,7 @@ jobs: ASC_KEY_P8_BASE64: ${{ secrets.ASC_KEY_P8_BASE64 }} APP_VERSION: ${{ steps.get-build-info.outputs.PACKAGE_VERSION }} BUILD_NUMBER: ${{ steps.ipa-build-number.outputs.build-number }} + BRANCH_NAME: ${{ github.ref_name }} run: | # Ensure the API key material is removed even if fastlane exits non-zero # (the step runs under `bash -e`, which would otherwise abort before cleanup). @@ -262,6 +263,7 @@ jobs: > asc_api_key.json # app_platform is required in non-interactive mode: distribute_only otherwise # calls fetch_app_platform, which prompts for input and crashes without a TTY. + SHORT_SHA="$(git rev-parse --short HEAD)" fastlane run upload_to_testflight \ api_key_path:"$PWD/asc_api_key.json" \ distribute_only:true \ @@ -269,6 +271,7 @@ jobs: app_identifier:"xyz.blueskyweb.app" \ app_version:"$APP_VERSION" \ build_number:"$BUILD_NUMBER" \ + changelog:"swm-new-arch: $BRANCH_NAME @ $SHORT_SHA" \ groups:"$TESTFLIGHT_GROUP" \ notify_external_testers:true diff --git a/app.config.js b/app.config.js index 79dd1dc619..49b626fa1b 100644 --- a/app.config.js +++ b/app.config.js @@ -31,7 +31,7 @@ module.exports = function (_config) { ...(IS_DEV || IS_TESTFLIGHT ? [] : []), ] - const UPDATES_ENABLED = IS_TESTFLIGHT || IS_PRODUCTION + const UPDATES_ENABLED = false // TODO: revert before merging // IS_TESTFLIGHT || IS_PRODUCTION const USE_SENTRY = Boolean(process.env.SENTRY_AUTH_TOKEN)