remove build app #113
Workflow file for this run
This file contains 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: 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' | ||
bundler-cache: true | ||
working-directory: app/ios/fastlane | ||
- name: Install Dependencies | ||
run: bundle install --retry 3 --jobs 4 | ||
working-directory: app/ios/fastlane | ||
- name: Setup Fastlane Match | ||
run: fastlane match development --type development | ||
- name: Run Fastlane Distribute | ||
uses: maierj/[email protected] | ||
with: | ||
lane: 'ios distribute' | ||
subdirectory: 'app/ios/fastlane' | ||
env: |