From 37067659be2cb5f845c51d0b2f24b5130600c48c Mon Sep 17 00:00:00 2001 From: LocalNewsTV <62873746+LocalNewsTV@users.noreply.github.com> Date: Fri, 31 May 2024 14:13:25 -0700 Subject: [PATCH] revert Gemini failure, try importing separate xcode setup --- .github/workflows/main.yaml | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 9125a2e..1c01251 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -18,6 +18,9 @@ jobs: APP_BUILD_VERSION: "2.7" steps: + - uses: maxim-lobanov/setup-xcode@v1 + with: + xcode-version: "15.4" - name: Increase build env: GITHUB_RUN_NUMBER: ${{ github.run_number }} @@ -82,15 +85,16 @@ jobs: agvtool new-version -all ${BUILD_NO} - name: Build For Release - uses: actions/xcode@v3 - with: - xcode-version: 15.4 - workspace: ipad.xcworkspace - scheme: ipad - configuration: Release - sdk: iphoneos - derivedDataPath: $DATA_DIR - archivePath: ${DATA_DIR}/${ARCHIVE_NAME} + + run: | + xcodebuild \ + -workspace ipad.xcworkspace \ + -scheme ipad \ + -configuration Release \ + -sdk iphoneos \ + -derivedDataPath $DATA_DIR \ + -archivePath ${DATA_DIR}/${ARCHIVE_NAME} \ + archive - name: Export Archive # This is the step that signs the build