fix(ci): send PR swift builds to testflight (#10536)

Fixes a bug introduced in #8778 that disabled uploading release builds
on PR runs to the App Store for TestFlight distribution.
This commit is contained in:
Jamil
2025-10-08 16:08:56 -04:00
committed by GitHub
parent e2e592301a
commit d11bd14fce

View File

@@ -104,7 +104,7 @@ jobs:
name: macos-client-standalone-pkg
path: "${{ runner.temp }}/${{ matrix.pkg-artifact-file }}"
- run: ${{ matrix.upload-script }}
if: "${{ github.event_name == 'workflow_dispatch' && github.ref_name == 'main' }}"
if: "${{ github.event_name == 'workflow_dispatch' && (github.ref_name == 'main' || matrix.job_name != 'build-macos-standalone') }}"
env:
ARTIFACT_PATH: "${{ runner.temp }}/${{ matrix.artifact-file }}"
ISSUER_ID: "${{ secrets.APPLE_APP_STORE_CONNECT_ISSUER_ID }}"