Use Fastlane to manage version bump #12
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: CI | |
on: push | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write # Required for authentication using GitHub-signed OIDC token | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dart-lang/setup-dart@v1 | |
with: | |
sdk: "3.0.6" | |
- uses: flutter-actions/setup-flutter@v2 | |
with: | |
version: "3.10.6" | |
channel: "stable" | |
cache: true | |
cache-key: ${{ runner.tool_cache }}/flutter # optional, change this to force refresh cache | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3" | |
- name: Install fastlane and dependencies | |
run: bundle install | |
- name: Build Android example app | |
run: bundle exec fastlane build_example_app |