From 3e78e6faf182c232d1717f7e19d3154aeab18dfc Mon Sep 17 00:00:00 2001 From: Aman Harwara Date: Wed, 21 Feb 2024 19:12:05 +0530 Subject: [PATCH] chore: update ios ci --- .github/workflows/mobile.release.prod.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/mobile.release.prod.yml b/.github/workflows/mobile.release.prod.yml index 1cedab86c..6da4f7db2 100644 --- a/.github/workflows/mobile.release.prod.yml +++ b/.github/workflows/mobile.release.prod.yml @@ -77,8 +77,12 @@ jobs: - name: Export version from package.json run: echo "PACKAGE_VERSION=$(grep '"version"' ../web/package.json | cut -d '"' -f 4 | cut -d "-" -f 1)" >> $GITHUB_ENV + - name: Ruby Setup for Fastlane + uses: ruby/setup-ruby@v1 + with: + working-directory: 'packages/mobile' - name: Install dependencies - run: yarn install --immutable && yarn install:pods + run: yarn install --immutable && bundle install && yarn install:pods - run: yarn build:mobile - name: Set ssh connection to Github uses: webfactory/ssh-agent@v0.4.1 @@ -86,10 +90,6 @@ jobs: ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} - name: Export Apple AppStore Connect API key run: echo "${{ secrets.APPSTORE_CONNECT_KEY }}" > ios/Authkey.p8 - - name: Ruby Setup for Fastlane - uses: ruby/setup-ruby@v1 - with: - working-directory: 'packages/mobile' - name: Setup fastlane uses: maierj/fastlane-action@v1.4.0 env: