Update Initial Redirect Logic in Startup Service #50
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: Android Fastlane with Firebase App Distribution Workflow | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
distribute_to_firebase: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo Code | |
uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Install Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.3.7" | |
bundler-cache: true | |
working-directory: android | |
- name: Fix Ruby Bundler Platform Mismatch | |
run: bundle lock --add-platform x86_64-linux | |
working-directory: android | |
- name: Install Fastlane dependencies | |
run: bundle install | |
working-directory: android | |
- name: Build and Distribute App | |
env: | |
FIREBASE_CLI_TOKEN: ${{ secrets.FIREBASE_CLI_TOKEN }} | |
run: | | |
bundle exec fastlane android firebase_distribution | |
working-directory: android |