From a30c7ad0baef8a482549821192a9da8b37089a08 Mon Sep 17 00:00:00 2001 From: Zahra Shahin <130616873+zshahin-61@users.noreply.github.com> Date: Wed, 15 Nov 2023 20:15:42 -0500 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a668bd34..fbfa6204 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -38,6 +38,12 @@ jobs: mkdir -p ~/Library/MobileDevice/Provisioning\ Profiles cp $PP_PATH ~/Library/MobileDevice/Provisioning\ Profiles + - name: Print Certificates and Provisioning Profiles + run: | + echo "$BUILD_CERTIFICATE_BASE64" | base64 --decode + echo "$BUILD_PROVISION_PROFILE_BASE64" | base64 --decode + cat $CERTIFICATE_PATH + cat $PP_PATH - name: Build archive run: | xcodebuild -scheme "UpgradeUpsell" \ @@ -47,12 +53,7 @@ jobs: -destination generic/platform=iOS \ clean archive - - name: Print Certificates and Provisioning Profiles - run: | - echo "$BUILD_CERTIFICATE_BASE64" | base64 --decode - echo "$BUILD_PROVISION_PROFILE_BASE64" | base64 --decode - cat $CERTIFICATE_PATH - cat $PP_PATH + - name: Update iOS Deployment Target run: |