From 88304440e9357979bea1a9de9185c3945496440b Mon Sep 17 00:00:00 2001 From: Janez T Date: Tue, 28 Oct 2025 11:20:36 +0100 Subject: [PATCH] feat: Disable iOS IPA and macOS DMG builds in the multi-platform workflow --- .github/workflows/build-multiplatform.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-multiplatform.yml b/.github/workflows/build-multiplatform.yml index 084bfde..90b1dd5 100644 --- a/.github/workflows/build-multiplatform.yml +++ b/.github/workflows/build-multiplatform.yml @@ -131,7 +131,7 @@ jobs: name: Build iOS IPA runs-on: macos-latest needs: [update-version] - if: always() && (needs.update-version.result == 'success' || needs.update-version.result == 'skipped') + if: false # Disabled - skip IPA builds steps: - name: Checkout code @@ -315,7 +315,7 @@ jobs: name: Build macOS DMG runs-on: macos-latest needs: [update-version] - if: always() && (needs.update-version.result == 'success' || needs.update-version.result == 'skipped') + if: false # Disabled - skip DMG builds steps: - name: Checkout code