Skip to content

Ai/workflow distribute ios android #101

Ai/workflow distribute ios android

Ai/workflow distribute ios android #101

name: Build & Upload to Firebase iOS App Distribution
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build and Distribute iOS App
runs-on: macos-latest
steps:
- name: Check out the code
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
- name: Clear gem cache
run: gem install bundler && bundle cache clean
- name: Install Fastlane and Dependencies
run: |
gem install fastlane
cd app/ios/fastlane
bundle install --retry 3 --jobs 4 # Retry and use multiple jobs to speed up installation
env:
PATH: /usr/local/bin:$PATH
- name: Run Fastlane Increment Version
run: |
cd app/ios/fastlane
fastlane increment_version
# env:
# FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
- name: Run Fastlane Distribute
run: |
cd app/ios/fastlane
fastlane distribute
# env:
# FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}