Skip to content

Use Fastlane to manage version bump #12

Use Fastlane to manage version bump

Use Fastlane to manage version bump #12

Workflow file for this run

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