iOS Release Distribution #81
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: iOS Release Distribution | |
| on: | |
| workflow_dispatch: | |
| repository_dispatch: | |
| types: [ios-release-dist] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: macos-15 | |
| steps: | |
| # - uses: actions/checkout@v4 | |
| # Use the setup-xcode action to select a specific version | |
| # - name: Select Xcode Version | |
| # uses: maxim-lobanov/setup-xcode@v1 | |
| # with: | |
| # xcode-version: '16.2' # Specify the desired version, e.g., '14.2', '15.3', or 'latest-stable' | |
| - name: Verify Xcode version | |
| run: xcodebuild -version | |
| - name: Check out Git repository # clone the repo to local ci workspace | |
| uses: actions/checkout@v3 | |
| with: | |
| repository: lingopractices/mobile | |
| token: ${{ secrets.MOBILE_PAT }} | |
| ref: main | |
| - name: Get yarn cache directory path | |
| id: yarn-cache-dir-path | |
| run: echo "YARN_CACHE_DIR=$(yarn cache dir)" >> $GITHUB_ENV | |
| - name: Cache Yarn dependencies | |
| uses: actions/cache@v3 | |
| id: yarn-cache | |
| with: | |
| path: ${{ env.YARN_CACHE_DIR }} | |
| key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-yarn- | |
| - name: Cache Pods dependencies | |
| uses: actions/cache@v3 | |
| id: pods-cache | |
| with: | |
| path: ios/Pods | |
| key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-pods- | |
| - name: Install Ruby 3.x | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '3.2.4' | |
| bundler-cache: true | |
| working-directory: ios | |
| - name: Installing dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Generating config files | |
| run: yarn rnuc .env.production | |
| - name: Install pods | |
| run: pod install | |
| working-directory: ios | |
| - name: Run Fastlane build | |
| working-directory: ios | |
| run: bundle exec fastlane release | |
| env: | |
| MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }} | |
| APP_STORE_CONNECT_PRIVATE_KEY: ${{ secrets.APPSTORE_API_KEY }} |