diff --git a/.github/workflows/ios_release.yml b/.github/workflows/ios_release.yml index c827fb45d..00b3cddf6 100644 --- a/.github/workflows/ios_release.yml +++ b/.github/workflows/ios_release.yml @@ -65,8 +65,8 @@ jobs: - name: Install dependencies && Build app shell: bash run: | + yarn install; cd apps/mobile; - yarn; yarn prepare-archive; # security unlock-keychain -p ${{ secrets.KEYCHAIN_PASS }} ~/Library/Keychains/login.keychain-db diff --git a/apps/mobile/scripts/deploy-ios-appstore.sh b/apps/mobile/scripts/deploy-ios-appstore.sh index 41db7f88d..4b98e5478 100755 --- a/apps/mobile/scripts/deploy-ios-appstore.sh +++ b/apps/mobile/scripts/deploy-ios-appstore.sh @@ -55,9 +55,8 @@ build_appstore() { yarn; yarn syncrnversion; cd $project_dir/ios; - bundle install; [ ! -z $CI ] && bundle exec pod cache clean --all; - bundle exec pod install; + bundle install && bundle exec pod install; cd $project_dir; bundle exec fastlane ios appstore; }