From 3d57618666f28e2ff2baaadb8dcb522d628b15e5 Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Wed, 27 May 2026 16:10:14 -0300 Subject: [PATCH] fix(ci): restore iOS upload on develop after upload-hold removal Removing upload-hold in #7344 dropped the always() guard on upload-ios. On develop, build-hold is skipped and the default success() condition then skips upload even when build-ios succeeds. Match the Android upload pattern so develop TestFlight uploads run again without reintroducing the PR upload-hold gate. --- .github/workflows/build-ios.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-ios.yml b/.github/workflows/build-ios.yml index c844b7e7a4b..30e8747bab8 100644 --- a/.github/workflows/build-ios.yml +++ b/.github/workflows/build-ios.yml @@ -59,6 +59,7 @@ jobs: name: Upload runs-on: macos-26 needs: [build-ios] + if: ${{ always() && needs.build-ios.result == 'success' }} steps: - name: Checkout Repository uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1