From 4da36b78163ea689de7377d01594aefdfaf53b08 Mon Sep 17 00:00:00 2001 From: Balazs Perlaki-Horvath Date: Sun, 15 Dec 2024 13:22:06 +0100 Subject: [PATCH] Fix CD process for macOS --- .github/workflows/cd.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index c47b1c3fd..9f43005a8 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -112,6 +112,10 @@ jobs: if: matrix.platform == 'iOS' && contains(env.UPLOAD_TO, matrix.destination) run: echo "EXTRA_XCODEBUILD=-sdk iphoneos ${{ env.APPLE_AUTH_PARAMS }}" >> $GITHUB_ENV + - name: Set EXTRA_XCODEBUILD for macOS + if: matrix.platform == 'macOS' && contains(env.UPLOAD_TO, matrix.destination) + run: echo "EXTRA_XCODEBUILD=${{ env.APPLE_AUTH_PARAMS }}" >> $GITHUB_ENV + - name: Set macOS FTP export method, and Developer ID Certificate if: matrix.platform == 'macOS' && matrix.destination == 'ftp' && contains(env.UPLOAD_TO, matrix.destination) run: |