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: |